
17/12/2003, 08:35
|
 | | | Fecha de Ingreso: octubre-2003
Mensajes: 373
Antigüedad: 21 años, 5 meses Puntos: 13 | |
Prueba este código:
Private WithEvents bt As CommandButton
Private Sub Form_Load()
Set bt = Controls.Add("VB.CommandButton", "boton1")
bt.Visible = True
bt.Caption = "Hola Caracola"
bt.Left = 100
bt.Top = 100
End Sub |