Relational database normalization rules do not permit storing mutiple values
in a single field. So the right answer is, you don't. You can force muliple
values in a text box with code like this in the click event of the list box:
Dim varItem As Variant
Dim strList As String
With Me!lstElevation
If .MultiSelect = 0 Then
Me!txtSelected = .Value
Else
For Each varItem In .ItemsSelected
strList = strList & .Column(0, varItem) & ","
Next varItem
If strList <> "" Then
strList = Left$(strList, Len(strList) - 1)
End If
Me.txtSelected = strList
End If
End With
While txtSelected above could be bound to a field in the underlying table,
it is not. The code above is used to build an IN clause for a Select
statement.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access Downloads
http://www.datastrat.com
http://www.mvps.org/access