Hi,
I'm trying to change the output options of the ODB++ output window via VBscript.
It goes as follows:
.
.
.
Set dialogObject = app.Gui.FindDialog("ODB++ Output")
.
.
.
Set checkBoxObject = dialogObject.FindCheckBox("<name of CheckBox here>")
If(Not Err Or (checkBoxObject Is Nothing))
Call checkBoxObject.Checked = True/False
Anyway, I'm trying to figure out how to get the full list of checkboxes, editboxes and buttons, can anyone help?
Some of the checkboxes names are fairly easy to guess, they have strings next to them and you just enter the string, but the layer list at the bottom does not.
In general I would like to have all the names of all controls in the dialog, if such a thing can be possible.
Thanks to anyone how helps!
Issac