Making label visible... (1 Viewer)

littlej

Registered User.
Local time
Today, 08:30
Joined
Jun 21, 2000
Messages
23
Is it possible to bring a label to the front when the button is clicked? I have an image for the button....that is why I am asking.... Thanks....
 

MHM

Registered User.
Local time
Today, 08:30
Joined
Mar 15, 2000
Messages
101
(Hope I've understood..)

Try to use two different controls:
1. the button itself
2. the label, you want to show after <click>

Do like this:
Set the property "Visible" to false for the 2nd control - and change "Visible" with the click-event:

Me.btnButtonToClick.Visible=false
Me.lblLabelToAppear.Visible=true
 

Users who are viewing this thread

Top Bottom