Have data entry form that uses text boxes for all data fields except one, City, which uses a combo box that is linked to a city table that has all the city names in a 25 mile radius. Makes data entry easier. Problem is I have a need to populate those text boxes with the data from the server, but I can't load "City" from server into "City" on data entry form - the combo box. Here is the line of code that won't work:
Me.City = rsdbo.Fields("City"}
All the other fields work fine. It's the combo box that's the problem
Is there a way doing this, or a cool work-around?
Thanks in advance
jpl
Me.City = rsdbo.Fields("City"}
All the other fields work fine. It's the combo box that's the problem
Is there a way doing this, or a cool work-around?
Thanks in advance
jpl