Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/05/2009, 11:43
nefRoc
 
Fecha de Ingreso: enero-2009
Mensajes: 6
Antigüedad: 16 años, 2 meses
Puntos: 0
De acuerdo Respuesta: Como agregar un textbox por código

Hola talvez te pueda servir esto....

Código:
 
Dim numTexBox As Integer = 5
Dim i As Integer
 
For i = 0 To numTexBox - 1
    Dim txt As New TextBox
    txt.Name = "txtNum" & i
    txt.Width = "40"
    txt.TextAlign = HorizontalAlignment.Center
    txt.Location = New Point(40 + (50 * i), 120)
    Controls.Add(txt)
Next

Última edición por nefRoc; 01/05/2009 a las 11:50