Hi i have been going round in circles and unable to find out how to assign a string which i have by clicking a command button to assign as a multi table in access 2003. I know if i had this in 2007 it would not be a problem, unfortunatly i don't have this. My main problem is assigning th string value to the table. Below is the code to get the information in a string from a multi select combi box. Any help would be much appreciated.
Thanks
Private Sub Command437_Click()
Dim varItem As Variant
Dim strList As String
For Each varItem In List434.ItemsSelected
strList = strList & List434.Column(1, varItem) & ", "
Next varItem
strList = Left(strList, Len(strList) - 2)
MsgBox strList
End Sub
Thanks
Private Sub Command437_Click()
Dim varItem As Variant
Dim strList As String
For Each varItem In List434.ItemsSelected
strList = strList & List434.Column(1, varItem) & ", "
Next varItem
strList = Left(strList, Len(strList) - 2)
MsgBox strList
End Sub