value selected in combo box - not visible

B

babs

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
 
B

Barry Gilbert

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

Barry
 
B

babs

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

Thanks,
Barb
 
B

babs

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
 
Top