Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/09/2011, 14:58
guillebomtrasmiti
 
Fecha de Ingreso: noviembre-2010
Ubicación: madrid
Mensajes: 478
Antigüedad: 13 años, 5 meses
Puntos: 5
Respuesta: ejemplo sobre DaysInMonth

esto me funciona, pero necesito ahora que salgan los textbox unos al lado de los otros por semana
For i = 1 To DateTime.DaysInMonth(2011, July)
'Crear TextBox y añadirlo
Dim txt As New TextBox
txt.Text = "hola"
txt.Location = New System.Drawing.Point(280, 154)
txt.Size = New System.Drawing.Size(100, 25)
txt.BackColor = Color.Blue
txt.ForeColor = Color.White
Me.Controls.Add(txt)
Next