Guest - Rogerio - Posted May 22, 2005 Report Share Posted May 22, 2005 alguém sabe como fazer um botão sem borda mas com o caption que ao passar com o mouse a borda fique aparecendo? Quote Link to comment Share on other sites More sharing options...
0 ramon Posted May 22, 2005 Report Share Posted May 22, 2005 Coloque em form uma label e depois um botao em cima da label com as mesmas dimensões e nas propiedades do botao coloque visible Falsee depois cole este codigo Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Command1.Visible = False End Sub Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Command1.Visible = True End Sub Quote Link to comment Share on other sites More sharing options...
Question
Guest - Rogerio -
alguém sabe como fazer um botão sem borda mas com o caption que ao passar com o mouse a borda fique aparecendo?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.