I have a dialog with checkboxes for 16 languages and another section with checkboxes for 22 specific tests.
Then in my code I have to check to see which languages and tests the user wants to run. Currently I have this approach for each language and test:
(Note, I do abbreviate GetDialogProperty to GDP, but expanded here so newer users are not wondering what the heck I am doing.)
Code: Select all
GetDialogProperty>MyDialog,cbGerman,Checked,IsChecked
If>IsChecked=True
GoSub>LanguageTest,German
Endif
Any suggestions?