Popup image

ajitaccess

New member
Local time
Today, 21:27
Joined
Feb 24, 2015
Messages
8
Hello all

Hi there i was wondering if there is any way i can popup image on rollover on button or label. if yes please tell me how to do it.

thanks in advance

aJIT :confused:
 
For a command button and a label, get to properties and on the "Other" tab there is a "ControlTip Text" field where you can put a hint as to what the button will do. This acts like a roll over. There is also a "Status Bar Text" field where you can put a longer message that appears in the bottom left corner of Access. This only displays when the object has the focus. As far as roll over, there is no event, the closest might be the "Got Focus", meaning you can use the tab key to bounce around and the pop up will display when the focus is on that object. Hope that helps
 
Thanks JDraw n Privateer
Better i figured out by placing a button and image,
- in properties of image i made is invisible
- on mousedown of button i coded image.visible = true
- on mouseup - image.visible = false
so it sort of gave the desired effect

thought it may be of some use to someone..

Regards

aJIT
 

Users who are viewing this thread

Back
Top Bottom