Hi All
In AccessXP I have a tab control with 5 tabs and I went to requery a
combobox if and only if the user is moving from one perticular tab. I
have this in place right now (On Change event of the tab control) but
it does not do exactly what I want as it requeries cboParty each the
user clicks on a non-'Page28' tab.
If Me.TabCtl10.Pag es.Item(TabCtl1 0.Value).Name <"Page28" Then
Me.cboPARTY.Req uery
in other words when the focus is moved FROM tab 'Page28' requery
cboParty. I was hoping I do not have to add code to each tab to
requery the control.
bobh.
In AccessXP I have a tab control with 5 tabs and I went to requery a
combobox if and only if the user is moving from one perticular tab. I
have this in place right now (On Change event of the tab control) but
it does not do exactly what I want as it requeries cboParty each the
user clicks on a non-'Page28' tab.
If Me.TabCtl10.Pag es.Item(TabCtl1 0.Value).Name <"Page28" Then
Me.cboPARTY.Req uery
in other words when the focus is moved FROM tab 'Page28' requery
cboParty. I was hoping I do not have to add code to each tab to
requery the control.
bobh.
Comment