Gadget Properties Questions
Posted: Mon Jan 04, 2010 10:57 am
1.- Does exists any property from a TextBox, Label and/or EditArea Gadgets to set they to Multiline Editing? This is, when the text into such gadgets reach their max width, automatically jump to the next line. Basically like in Visual Basic.
2.- How can I set the index value of a ComboBox or a Listbox? As happens in Visua Basic, i can write:
And the second element of that list will be selected/highlighted.
I took a look at the docs, but i found nothing similar. I need something like:
Thanks in advance.
2.- How can I set the index value of a ComboBox or a Listbox? As happens in Visua Basic, i can write:
Code: Select all
MyList.ListIndex = 1I took a look at the docs, but i found nothing similar. I need something like:
Code: Select all
SetGadgedPropertie(#MyListbox, Index, 1)Thanks in advance.