I have an unbound form, whose combobox and textboxes are also unbound.
The form's record source is a query (getdata) .
It has combo box whose rowsource is the same query. The afterupdate event for the combobox assigns a column from the query, (Document_Contr ol_Number), + 1, to a textbox in the form.
When the form is submitted, the values are added into the table, but when I make a selection in the combobox, it does not use the updated Document_Contro l_Number to assign a value to the textbox
I want the form to reflect the changes in the table.
I tried Form.requery, but this didn't seem to work.
Does anybody have a suggestion?
The form's record source is a query (getdata) .
It has combo box whose rowsource is the same query. The afterupdate event for the combobox assigns a column from the query, (Document_Contr ol_Number), + 1, to a textbox in the form.
When the form is submitted, the values are added into the table, but when I make a selection in the combobox, it does not use the updated Document_Contro l_Number to assign a value to the textbox
I want the form to reflect the changes in the table.
I tried Form.requery, but this didn't seem to work.
Does anybody have a suggestion?
Comment