how to go to a specific record

  • Thread starter Thread starter Michel Peeters
  • Start date Start date
M

Michel Peeters

I have an unbounded combobox which goes to other records (made with the
wizard ) with the after_update event.
It works ok.
On double click on the combobox a "search form" opens in dialog.
When the search form closes, the combobox shows the Id (selected in the
list box from the search form) to go.
But no record-navigation happens unless I open the combobox with the mouse
or with F4 and select the Id (it is 'ready for selecting' while opening).

How can I start the "after_update" event from the combobox?

tks
Michel P.
 
Michel Peeters said:
I have an unbounded combobox which goes to other records (made with the
wizard ) with the after_update event.
It works ok.
On double click on the combobox a "search form" opens in dialog.
When the search form closes, the combobox shows the Id (selected in the
list box from the search form) to go.
But no record-navigation happens unless I open the combobox with the mouse
or with F4 and select the Id (it is 'ready for selecting' while opening).

How can I start the "after_update" event from the combobox?

After the line of code that opens the dialog form add a line ...

Call ComboBoxName_AfterUpdate
 
Back
Top