J
john
In building an SQL satement from a List box, What other code do I need to
read thru each row of the list box and retrive its value?
How do I use "Set" or "Dim" for A_Row, and A_ListBox to work in my For Each
statement?
Dim SomeVariable, FromSQL
For Each A_Row In A_ListBox
SomeVariable = ListBoxName.Value
FromSQL = FromSQL & "INNER JOIN ([" & SomeVariable & ".mdb]." & SomeVariable
& ""
Next
John
read thru each row of the list box and retrive its value?
How do I use "Set" or "Dim" for A_Row, and A_ListBox to work in my For Each
statement?
Dim SomeVariable, FromSQL
For Each A_Row In A_ListBox
SomeVariable = ListBoxName.Value
FromSQL = FromSQL & "INNER JOIN ([" & SomeVariable & ".mdb]." & SomeVariable
& ""
Next
John