On click SBoard

  • Thread starter Thread starter rob p
  • Start date Start date
R

rob p

I made a switchboard with the wizard. It has 7 buttons on the main page. I
can tab thru but a mouse won't work. The on click has:

=HandleButtonClick(1)

I think I need something like:

=OpenForm("my form") but I tried substituting and got an error.

What can I do so I can use a mouse click AND tab / enter to select?

thanks.
rob
 
Hi Rob,

In the ON-CLICK property for each button

Dim DocName As String
Dim LinkCriteria As String

DocName = "YourFormNameGoesHere"
DoCmd.OpenForm DocName, , , LinkCriteria

HTH
 
Back
Top