T tanatif Registered User. Local time Today, 09:58 Joined Feb 10, 2016 Messages 40 Dec 8, 2016 #1 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]
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]
moke123 AWF VIP Local time Today, 12:58 Joined Jan 11, 2013 Messages 4,899 Dec 8, 2016 #2 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)
T tanatif Registered User. Local time Today, 09:58 Joined Feb 10, 2016 Messages 40 Dec 8, 2016 #3 moke123 said: in the afterupdate event of the combobox you would have Code: me.MyFieldName = me.MyComboboxName.Column(1) Click to expand... YES working very good thank you
moke123 said: in the afterupdate event of the combobox you would have Code: me.MyFieldName = me.MyComboboxName.Column(1) Click to expand... YES working very good thank you