vb6 Couleur pour un commandbutton creer dynamiquement - VB/VBA/VBS - Programmation
Marsh Posté le 14-10-2004 à 23:12:09
Salut a tous En visual basic qui saurais comment mettre de la couleur dans un commandbutton creer dynamiquement Voici le code : ---(DANS ->Declaration)------------------------------- Private Withevents cmd1 as CommandButton ---(DANS ->Form Load)--------------------------------- Private sub Form_Load () Set cmd1 = Controls.Add("VB.CommandButton", "cmd1" ) With cmd1 .Visible = True .Width = 1000 'LargueurDuCmd. .Height = 400 'HauteurDuCmd. .Top = 0 'ToutVersBordEnHaut .Left = 0 'ToutVersBordGauche. .Caption = "cmd1" .FontSize = 10 .BackColor = RGB(255, 255, 0) End With End Sub ------------------------------------------------------------------ Merci a tous ceux qui save, et aux autre aussi.
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 14-10-2004 à 23:12:09
Salut a tous
En visual basic qui saurais comment mettre de la couleur dans un commandbutton creer dynamiquement
Voici le code :
---(DANS ->Declaration)-------------------------------
Private Withevents cmd1 as CommandButton
---(DANS ->Form Load)---------------------------------
Private sub Form_Load ()
Set cmd1 = Controls.Add("VB.CommandButton", "cmd1" )
With cmd1
.Visible = True
.Width = 1000 'LargueurDuCmd.
.Height = 400 'HauteurDuCmd.
.Top = 0 'ToutVersBordEnHaut
.Left = 0 'ToutVersBordGauche.
.Caption = "cmd1"
.FontSize = 10
.BackColor = RGB(255, 255, 0)
End With
End Sub
------------------------------------------------------------------
Merci a tous ceux qui save, et aux autre aussi.