D
David Lozzi
Hello,
I am trying to populate a combobox from the script. The data that is being
populated is being pulled from another database (IBM universe). We can pull
the data great and do whatever we want with it, like loading it into a
recordset, but then we cannot get the loaded recordset into the combo box.
Here's what I tried:
val = rst.GetString(adClipString, , ";", ";")
Me.Combo0.RowSourceType = "Value List"
Me.Combo0.RowSource = val
Where rst is the loaded recordset. The issue here is that the amount of data
we are pulling exceeds the length of the Value List.
How can I get this data into the combo box? I'm not married to the recordset
idea, i'd rather loop through the data from the other database and populate
the combobox immediatly. Is there a add row option?
thanks,
--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
www.delphi-ts.com
(e-mail address removed)
I should've known that, but I had a brain fart...
I am trying to populate a combobox from the script. The data that is being
populated is being pulled from another database (IBM universe). We can pull
the data great and do whatever we want with it, like loading it into a
recordset, but then we cannot get the loaded recordset into the combo box.
Here's what I tried:
val = rst.GetString(adClipString, , ";", ";")
Me.Combo0.RowSourceType = "Value List"
Me.Combo0.RowSource = val
Where rst is the loaded recordset. The issue here is that the amount of data
we are pulling exceeds the length of the Value List.
How can I get this data into the combo box? I'm not married to the recordset
idea, i'd rather loop through the data from the other database and populate
the combobox immediatly. Is there a add row option?
thanks,
--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
www.delphi-ts.com
(e-mail address removed)
I should've known that, but I had a brain fart...