I am currently Porting an Application from Access 2003 to VS 6
I am having issues with certain listbox properties missing out of VS 6
mainly
Listbox.RowSource = "field1;field2;field3;" <-- delimited string rowsoruce
AND last but not least
ListBox.Recordset = objADODBRecordset
Does anyone have any solutions to my predicament
If I do not find equivalent controls I will wind up doing a massive rewrite of the logic & display layers :/
Thanks for anyones help

Need Rapid help
FeiUsa
propossed solution : create your own in a usercontrol with a textbox and a datagrid, prepared to write a lot of code
in vbnet its a bit easyer inherrit from combobox and ownerdraw
2. listbox.datasource = objado
Remco