Hello , i've got a question : How do you make those mouse over buttons in Visual Basic 6.0 with a delay ?
I want them to look like this .
The buttons come a few (small)seconds later so they have a delay .
When Its in down state , it shouldn't do a thing untill the mouse is released.
So does someone know how to do the delay thingy ?
You can download the program and see it for yourself , but I made a vid , so it would be easier .
(in .mov and .avi )
This is the program:
These are the vids:
Buttons : Quickplayer Or Buttons : Windows media player
(By the way : Source written ones :) )
I want them to look like this .
The buttons come a few (small)seconds later so they have a delay .
When Its in down state , it shouldn't do a thing untill the mouse is released.
So does someone know how to do the delay thingy ?
You can download the program and see it for yourself , but I made a vid , so it would be easier .
(in .mov and .avi )
This is the program:
These are the vids:
Buttons : Quickplayer Or Buttons : Windows media player
(By the way : Source written ones :) )
Code:
Dim OrigColor As Long Private Sub Form_Load() OrigColor = Command1.BackColor End Sub Private Sub Command1_Click() Command1.BackColor = vbRed End Sub
Comment