|
Vig,
Just "caught" your comments about ComboBoxes (I'm finally back at work now - and sometimes one has to print these threads to catch all the comments) ...
There are actually three "types" of ComboBoxes ... and I've only implemented one of them :
1) The Simple ComboBox - it looks like a TextBox with a ListBox underneath - the ListBox is always visible.
2) The DropDown ListBox - like a normal ComboBox - with a TextBox and a DropDown ListBox - but the TextBox is ReadOnly ... one cannot specify a custom value. Very common. Used when you don't want the user to select (type) a custom (unexpected) item. This is the one your referring to I think.
3) The DropDown ComboBox - the style that is currently supported. Like #2 except that one can edit the contents of the TextBox ... and provide a custom value.
I just haven't had time to implement the "other" two styles yet ... will be adding the STYLE property to these objects and will do so asap.
-Shawn [ 03. September 2002, 15:05: Message edited by: Shawn ]
|