Hi
I want to add a command button into my VB6 form,I want that when I press into this command, to still pressed.How can I design the command buttons?
thanks
Printable View
Hi
I want to add a command button into my VB6 form,I want that when I press into this command, to still pressed.How can I design the command buttons?
thanks
Check It Apperance Style Property
if you mean you want a toggle button then use a CheckBox and set it's Style to Graphical
are you talking about the check box control with the style property set to GraphicalVB Code:
Check1.Style = 1
Use checkbox and change the style to Graphical.Quote:
Originally Posted by engnouna
well no I am talking about when I press the command button to still pressed.Also the command button doesn't have a forecolor property.How can I change the forecolor of the caption?
Also I want to set the border style to 0-None but also this property does not exist.How can I do it?
thanks
Most of it can be done using a CheckBox.Quote:
Originally Posted by engnouna
thanks to you all