value selected in combo box - not visible

G

Guest

I am selecting a zone in a combo dropdown list and after the zone is selected
the 2nd column the rate is dumped into the rate field (in event
procedure-afterupdate of the cbozone field). The rate field is fine and
visible. The dropdown list for zone is visible but after I select the zone
the zone field is BLANK but the rate field is filled in. Visible set to yes
for the zone field. In the report the value for zone that was selected shows
up but is not visible on the FORM??????

Please help,
thanks,
Barb
 
G

Guest

Do you have the ColumnCount property set to 2 and the ColumnWidths set to
show both columns?

Barry
 
G

Guest

Yes, both items are as you say!! Can't figure this one out. Anyone have
any ideas.

Thanks,
Barb
 
G

Guest

The zone field worked okay until I added the following code to the cbozone
dropdown box. Need the cartage rate to go into the cartage rate field.

Private Sub cbozone_AfterUpdate()
[CartageRate] = Me![cbozone].Column(1)
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top