copy data between field and combobox Column (1)

tanatif

Registered User.
Local time
Today, 12:02
Joined
Feb 10, 2016
Messages
40
hi

in events


how to copy data between field and combobox Column (1)

example

[field]=[Forms]![combobox].[Column](1)

but not working

and field to field working good
[field]=[Forms]![field]
 
in the afterupdate event of the combobox you would have

Code:
me.MyFieldName = me.MyComboboxName.Column(1)
 
in the afterupdate event of the combobox you would have

Code:
me.MyFieldName = me.MyComboboxName.Column(1)

YES working very good

thank you :)
 

Users who are viewing this thread

Back
Top Bottom