A
Antonio
What I am trying to do is:
when a user enters an IP address in a text box and clicks
on Add, I want that IP address to be entered into a
listbox.
this is the code I have, but I don't want to use the
RowSource, since the IP addresses are assigned to
customers:
If Len(Me!List1.RowSource) > 0 Then
Me!List1.RowSource = Me!List1.RowSource & ";" & Me!Text1
Else: Me!List1.RowSource = Me!Text1
End If
when a user enters an IP address in a text box and clicks
on Add, I want that IP address to be entered into a
listbox.
this is the code I have, but I don't want to use the
RowSource, since the IP addresses are assigned to
customers:
If Len(Me!List1.RowSource) > 0 Then
Me!List1.RowSource = Me!List1.RowSource & ";" & Me!Text1
Else: Me!List1.RowSource = Me!Text1
End If