Change command button text color

Is there a way to change a command buttons text color in vb6?

Comments

  • : Is there a way to change a command buttons text color in vb6?
    :
    ;Load microsoft forms 2.0 object library to get a toggle button.

    Private Sub Form_Load()
    'set button colors
    ToggleButton1.BackColor = vbBlue
    ToggleButton1.ForeColor = vbWhite
    ToggleButton1.Caption = "How's this?"
    End Sub

    ; there is another way to use command button, but boo coo more programming. This is much simpler



Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion