You need to look at the rowsource of the combobox and see what column
contaibs the data you want to enter into the textbox. Keep in mind that the
columns of a combobox are zero based so start at zero when counting the
columns in the rowsource. Say the data you want is in the second column of
the rowsource; the second column would be Column(1) of the combobox. The
expression to use in the AfterUpdate event would be:
Me!NameOfTextbox = Me!NameOfCombobox.Column(1)
Steve
(E-Mail Removed)
"Bob Vance" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> In my subForm I have a Combo box drop down list I want to have the data in
> my combo box entered into my Text Box [tbAdditionCharge] on AfterUpdate
> --
> Thanks in advance for any help with this......Bob
> MS Access 2007 accdb
> Windows XP Home Edition Ver 5.1 Service Pack 3
>
>