Home / comp / gb / file / save 
File.Save (gb)
Syntax
STATIC SUB Save ( FileName AS String, Data AS String )
Saves the contents of a string into a file.

This example shows how save can be used as a easy way to save the content of a TextArea to a text file.

Example
PUBLIC SUB ButtonSave_Click()
  Dialog.Filter = ["*.txt", "Text Files"]
  IF Dialog.SaveFile() THEN RETURN
  File.Save(Dialog.Path, TextAreaEdit.Text)
CATCH
  Message.Info(Error.Text)
END

The text file could have been opened using the File.Load method.