Switchboard command buttons

  • Thread starter Thread starter Peggy
  • Start date Start date
P

Peggy

I finally got to the point where I can make a switchboard.
I have several command buttons to pull up various forms
and reports. I have enlarged the buttons to hold a 16
font. After I depress a button a box made of dotted lines
appears around the text and stays there. Everything seems
to work fine but I don't like the looks.
 
I finally got to the point where I can make a switchboard.
I have several command buttons to pull up various forms
and reports. I have enlarged the buttons to hold a 16
font. After I depress a button a box made of dotted lines
appears around the text and stays there. Everything seems
to work fine but I don't like the looks.

That is normal Access behavior, and signifies that that control has
the focus.
I suppose you could add another line to the button's click event
setting focus elsewhere:
[SomeControl].SetFocus
 
Back
Top