Hi all,
I have been caught by what I think is a classic compatibility issue.
I have created a list screen that uses ADO to access a database located on a remote drive. In Access2003, the following code works fine and my list box gets populated correctly:
lessonList.AddItem (tempString)
rsLessons.MoveNext
tempString = ""
However, when I use this in Access2000 I get a compile error on the AddItem function...... Damn......
So do you know any way to get over this, is there a classic way of populating a ListBox in Access2000 from an ADO list, or does it really need to be a listbox bound directly to a query or table in the access instance you are running (e.g. the physical client?)????
All your help would be appretiated......
I have been caught by what I think is a classic compatibility issue.
I have created a list screen that uses ADO to access a database located on a remote drive. In Access2003, the following code works fine and my list box gets populated correctly:
lessonList.AddItem (tempString)
rsLessons.MoveNext
tempString = ""
However, when I use this in Access2000 I get a compile error on the AddItem function...... Damn......
So do you know any way to get over this, is there a classic way of populating a ListBox in Access2000 from an ADO list, or does it really need to be a listbox bound directly to a query or table in the access instance you are running (e.g. the physical client?)????
All your help would be appretiated......