Is there any way by which i can change the forecolor of a commandbutton in VB6???
ForeColor of Command Button
Collapse
X
-
Originally posted by mcluelessIs there any way by which i can change the forecolor of a commandbutton in VB6???
There is no option to change forecolor of a button in vb6.
Regards
>> ALI << -
Vb 6 does not support this property.
You might need to use some third party control.
Try to use osenxpsuite controlsComment
-
Easiest way is to use a checkbox with its style set to graphical. Only thing you need to consider is to put your code into the mouseup event (not the click event) and set the checkbox's value to 0 to make it pop up again like a button.Comment
Comment