Gambas/Dialogue
From Wikibooks, the open-content textbooks collection
< Gambas
back to Gambas
Contents |
[edit] 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.BackColor = Dialog.Color END PUBLIC SUB Button3_Click() Dialog.SaveFile() File.Save(Dialog.Path, TextArea1.Text) CATCH IF ERROR THEN RETURN END
[edit] Theory
[edit] Properties
Color Filter Font Path Title
[edit] Methods
OpenFile SaveFile SelectColor SelectDirectory SelectFont