Hi Everybody,
How can I Programatically change the properties of a Dialog(or controls in a dialog), like color, Fonts, and Captions?
I wish to write an application for different Languages (Like German, English Etc.) And it would be the easiest to display the dialog with the correct language by using something Like:-
If Lang = a then ' English
dialog1.caption = "Programme Name"
dialog1.label1.caption = "Options"
ElseIf Lang = b then ' Dutch
dialog1.caption = "Program Naam"
dialog1.label1.caption = "Keuses"
End If
Is this possible?
Where would/could I find the descriptions/instructions of the variables to be able to do this?
How can I Programatically change the properties of a Dialog(or controls in a dialog), like color, Fonts, and Captions?
I wish to write an application for different Languages (Like German, English Etc.) And it would be the easiest to display the dialog with the correct language by using something Like:-
If Lang = a then ' English
dialog1.caption = "Programme Name"
dialog1.label1.caption = "Options"
ElseIf Lang = b then ' Dutch
dialog1.caption = "Program Naam"
dialog1.label1.caption = "Keuses"
End If
Is this possible?
Where would/could I find the descriptions/instructions of the variables to be able to do this?
Comment