I am using VBScript behind a form, and want to populate a drop-down box with one of the recordsets I create in the form. I am trying to add it like this (AppObj is the rs), cmbApplication is the dropdown):
Do While Not AppObj.EOF
cmbApplication.AddItem(AppObj("Name"))
AppObj.MoveNext
Loop
, but I can't find anything like "AddItem". If someone could tell me how, I'd appreciate it.
Thank you,
Steve Geller
Do While Not AppObj.EOF
cmbApplication.AddItem(AppObj("Name"))
AppObj.MoveNext
Loop
, but I can't find anything like "AddItem". If someone could tell me how, I'd appreciate it.
Thank you,
Steve Geller