Welcome to the Indigo Rose Software discussion forums! You will need to sign up for a forum account and login before you can post. Need help? View the Forum FAQ.
Maybe I was too brief: the problem is that I have a listbox that is hidden at first. Then it is unhidden (= shown).
That works fine is the listbox does not contain checkboxes.
If it does contain checkboxes, the listbox itself cannot be hidden.
This looks like a bug to me.
result = ListBox.GetProperties("ListBox1");
if result .ListBoxType == 0 then
LB_LISTBOX=1
ListBox.SetType("ListBox1", LB_LISTBOX);
else
LB_LISTBOX=0
ListBox.SetType("ListBox1", LB_LISTBOX);
end
Comment