I work with VB 6.0 on a win95 system. I am trying to get my buttons to appear flat. However when I set the apperance from 3D to flat, nothing changed? What am I missing?
Printable View
I work with VB 6.0 on a win95 system. I am trying to get my buttons to appear flat. However when I set the apperance from 3D to flat, nothing changed? What am I missing?
Why not trying to make a label and a button. And when your mouse moves on your label.
Your button will appear. Make sure your button is visible false on the first time.
Place right on top of your label your button. ;)
Just a nice tip to create a flat buttons. :)Code:Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
cmdWelcome.Visible = False
End Sub
Private Sub lblWelcome_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
cmdWelcome.Visible = True
End Sub
In Commoncontrols 6 you have the toolbar control which have flat buttons. If you don't want to use that you could download a flatbutton control from my homepage