Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/12/2003, 08:35
Avatar de jercer
jercer
 
Fecha de Ingreso: octubre-2003
Mensajes: 373
Antigüedad: 20 años, 6 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