Hey!
I would like to know how I can make a prog similar to the Win98 Start button??
So that it easily pops up when I press a button and goes down again, when I press the button a second time!
Thanx
Printable View
Hey!
I would like to know how I can make a prog similar to the Win98 Start button??
So that it easily pops up when I press a button and goes down again, when I press the button a second time!
Thanx
Try this. Make a Form with a CheckBox and set it's Style to Graphical. Add a PictureBox and insert the following code into the Form.
Code:Private Sub Check1_Click()
If Check1 = Checked Then
Picture1.Visible = True
Else
Picture1.Visible = False
End If
End Sub
Private Sub Form_Load()
Picture1.Visible = False
End Sub
I made a little sample project,
you can download it here
http://64.82.89.57/
(note: that is running off of My PC so it may not be working when you go, also my IP is dynamic so it will not work if I disconnect and reconect to the internet)
Thanx for the fast replies!!!
The two things helped me a lot, now it shouldn't take long for my project!
Neon