Zydeceltico
Registered User.
- Local time
- Yesterday, 21:15
- Joined
- Dec 5, 2017
- Messages
- 843
Hi All -
I have a form that has a combobox (cboPart) that returns 5 columns.
When the user makes a selection in the combobo the values of each of the columns populate several different bound controls.
However, I have one unbound control (txtMill). When the form is first opened txtMill is empty. When a selection is made in cboPart, txtMill becomes populated from the query results of cboPart letting the user know which Mill the Part is made on.
The challenge I am facing is that the user needs to enter some data on this form, save and close it, and come back later to enter more data. The only thing is that since txtMill is unbound it is empty when the user comes back and it is important that it still has the Mill name in it.
I am storing the Mill_ID on the form in a bound hidden control. I thought about running some in-code SQL on Load using the Mill_ID as criteria to populate txtMill but wondering if there is an easier more elegant means to get the same result.
Ideas?
Thanks as always!!
Tim
I have a form that has a combobox (cboPart) that returns 5 columns.
When the user makes a selection in the combobo the values of each of the columns populate several different bound controls.
However, I have one unbound control (txtMill). When the form is first opened txtMill is empty. When a selection is made in cboPart, txtMill becomes populated from the query results of cboPart letting the user know which Mill the Part is made on.
The challenge I am facing is that the user needs to enter some data on this form, save and close it, and come back later to enter more data. The only thing is that since txtMill is unbound it is empty when the user comes back and it is important that it still has the Mill name in it.
I am storing the Mill_ID on the form in a bound hidden control. I thought about running some in-code SQL on Load using the Mill_ID as criteria to populate txtMill but wondering if there is an easier more elegant means to get the same result.
Ideas?
Thanks as always!!
Tim