![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
17/12/2003, 08:35
|
![Avatar de jercer](http://static.forosdelweb.com/customavatars/avatar44373_1.gif) | | | Fecha de Ingreso: octubre-2003
Mensajes: 373
Antigüedad: 21 años, 4 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 |