Mr Retirement
New Member
- Joined
- Nov 12, 2016
- Messages
- 46
Hello all!
I have a combobox with a dropdown of information that has multiple columns (from a query). In a normal (single) form, I normal use the 'on change' event and reference the other various columns that wasn't selected to change other text boxes on the form.
For example:
Is something like this possible in a continuous form? How can I code the specific textbox that i'm looking to change? Because as the next record becomes available, I want it only to change that text box on change... not all of the text boxes.
Hopefully this makes sense - a little hard to explain.
Any advice is appreciated!!!
Thanks,
Mr R
I have a combobox with a dropdown of information that has multiple columns (from a query). In a normal (single) form, I normal use the 'on change' event and reference the other various columns that wasn't selected to change other text boxes on the form.
For example:
VBA Code:
Me.TXTexamplebox1.Value = Me.InitialDropdownSelection.Column(2)
Me.TXTexamplebox2.Value = Me.InitialDropdownSelection.Column(3)
Is something like this possible in a continuous form? How can I code the specific textbox that i'm looking to change? Because as the next record becomes available, I want it only to change that text box on change... not all of the text boxes.
Hopefully this makes sense - a little hard to explain.
Any advice is appreciated!!!
Thanks,
Mr R