Hi kohle,
Behaviour differences of the ComboBox control
On the desktop:
- the Text field is editable
- ComboBox1.Text can be used to read AND change the text in text field
- ComboBox.Clear clears only the entries but NOT the text field
On the PPC:
- the Text field is NOT editable
- ComboBox1.Text is read only
- ComboBox1.Text="Something" doesn't work
- ComboBox1.Add(ComboBox1.Text) works
- ComboBox.Clear clears both, the entries PLUS the text field
Attached a small sample program to play with the ComboBox behaviour.
Best regards.