hi.. I've seen a program that if you clicked on the command button it remains on press, not just like an ordinary button than if you've clicked it, it return to its original phase or it pops out to its original form.
How can i do it?
that would be a checkbox, and its style set to graphical
i mean if you clicked it, it remains clicked.. get it?
an5w3r
01-28-2004, 09:40 PM
something like:
Private Sub Check1_Click()
If Check1.Value = 1 Then
Check1.Enabled = False
End If
End Sub
see this, the button remains pressed
herilane
01-29-2004, 03:33 AM
As has been said already, you'd get that effect if you used a checkbox or option button instead of a commandbutton, and set its style to graphical. Did you try that?
schlesien
02-04-2004, 01:36 PM
I was looking for this option also. Thanks for explaining about the graphical checkbox or option box.
As has been said already, you'd get that effect if you used a checkbox or option button instead of a commandbutton, and set its style to graphical. Did you try that?