|
-
Sep 15th, 2005, 09:43 AM
#4
Thread Starter
Frenzied Member
Re: MS Access VBA addItem List view
OK yes add item is on 2003 and im on 2000.
I have a workaround by using a value list
i.e Build a comma delimited string then
Me.lstEmpStates.RowSource = strStates
My trouble now is building the string
While Not rs.BOF And Not rs.EOF
strStates = strStates & ";" & rs.DataMember(0, 1)
rs.MoveNext
Wend
As you can see I am just wanting to get column 1 into the string as I loop through the record set but the syntax is wrong.
hlp pls
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|