I have been using
DIM a$
COMBOBOX GET TEXT hDlg, 301 TO a$
up untill now. I can create the ComboBox, Add items to it, select which item goes up top, and retrieve the item up top.
Now I want to retireive ALL the strings in the ComboBox. The manual says
CONTROL GET TEXT hDlg, 301 TO a$
will do it. Then I
REPLACE CHR$(0) WITH "," IN a$
and PARSE$ out all the strings.
The concept is great ...
The problem is that a$ is empty???
If I simply substitute
COMBOBOX GET TEXT hDlg, 301 TO a$
then a$ returns the top item fine.
I have read poffs 20x and I am sure i am doing everything right, so why doesnt it work?
------------------
Kind Regards
Mike
DIM a$
COMBOBOX GET TEXT hDlg, 301 TO a$
up untill now. I can create the ComboBox, Add items to it, select which item goes up top, and retrieve the item up top.
Now I want to retireive ALL the strings in the ComboBox. The manual says
CONTROL GET TEXT hDlg, 301 TO a$
will do it. Then I
REPLACE CHR$(0) WITH "," IN a$
and PARSE$ out all the strings.
The concept is great ...
The problem is that a$ is empty???
If I simply substitute
COMBOBOX GET TEXT hDlg, 301 TO a$
then a$ returns the top item fine.
I have read poffs 20x and I am sure i am doing everything right, so why doesnt it work?
------------------
Kind Regards
Mike
Comment