Bob,
Your question is not clear. Please reword your question.
Steve
trying to get the form to make the control visible when I open it, but
am
getting the error ,cant find subAdditionCharge which is the sub form?
The
control is set to no visible
Regards Bob
Forms!subAdditionCharge!cmbHorseName.Visible = True
Brilliant Steve , also can keep what is in there, regards Bob
Me!tbAdditionCharge = tbAdditionCharge.value & "- " &
Me!cmbHorseName.Column(1)
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
[email protected]
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