< Gambas

back to Gambas

Standard Dialogs

They make your coding easier.

In the following example you will use standard dialogues choosing Standarddialoge für die Wahl

  • the font
  • the colour
  • the file name
  • the file path

You need 1 textarea and 3 commandbuttons, to get the program going.

PUBLIC SUB Button1_Click()
 IF Dialog.SelectFont() THEN RETURN
 Textarea1.Font = Dialog.Font
END
PUBLIC SUB Button2_Click()
 IF Dialog.SelectColor() THEN RETURN
 Textarea1.Background = Dialog.Color
END
PUBLIC SUB Button3_Click()
Dialog.SaveFile() 
File.Save(Dialog.Path, TextArea1.Text)
CATCH 
IF ERROR THEN RETURN
END

Theory

Properties

Color  Filter  Font  Path  Title  

Methods

OpenFile  SaveFile  SelectColor  SelectDirectory  SelectFont

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.