Main Menu buttons

G

Guest

Is it possible creating button in MS Access2002 or in Access97 with the same
Access2003 format? I mean, when I put the mouse on the button, change to
highlight.
Thanks
José
 
A

AlCamp

Jose,
I'm not sure what you mean by "highlight", but you could use the
MouseMove event of the button to cause a colored border around the button to
appear.
Create a box control just around the edges of your button (call it
boxButton for ex.). Make it invisible.
On the MouseMove event for the button
boxButton.visible = True
On the Detail section MouseMove event
boxButton.visible = False

Now, everytime the cursor moves over the button the "highlight" border
appears, and when the cursor moves away, the "highlight" disappears.
hth
Al Camp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top