*Bring to front* a checkbox by code?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have a command button on a form with text on it, and ON THE BUTTON I
placed a check box control. In other words I see my button with a check box
on it. If the check box is checked, this means there is something to be
viewed, and therefore the user can click on the button and get the info.

However my problem is that when the user clicks on it, the check box
disappears under the button.

Once the user clicks the button, By code, can I bring to front my check box
the way it was?

Does anyone have a solution to this.
Thanking u all in advance
ROBERT
 
The checkbox likely disappears because the focus is shifted to the button.
In the click event of the button, move the focus to the checkbox and it'll
reappear.
 
Back
Top