How do i make the command button a different color. i have the mask and back color red but it still shows up gray.
Printable View
How do i make the command button a different color. i have the mask and back color red but it still shows up gray.
Change its Style Property to 1-Graphical.
Welcome to the forums!
You don't need to set the mask color, but you do need to set the button style to graphical. This changes the button backcolor to blue.
VB Code:
Option Explicit Private Sub Form_Load() Command1.BackColor = vbRed End Sub
awesome thanks for the help
No problem :wave: