Tuesday, April 24, 2012

[vb6] How to change the Color of a command button, or show a picture on it?


In order to be able to change the BackColor property of a command button you must also set Style property of the button to "Graphical" as shown below. If you don't then you will not see any difference in the color of the button. A similar effect is also true for the the Picture property.




The reason for this behaviour is that "Standard" means the button will be shown in the normal Windows style (no picture, and a standard color for all programs) instead of having the full graphical functionality that VB's command button provides.

Once the style has been set to "Graphical" you can set the backcolor or picture in the properties window.

No comments:

Post a Comment