
19/07/2007, 11:15
|
 | | | Fecha de Ingreso: noviembre-2004
Mensajes: 2.344
Antigüedad: 20 años, 4 meses Puntos: 8 | |
Re: evitar el barrido cuando se crea botones dinamicos si, por ejemplo:
Código:
P_Ubications.SuspendLayout()
P_Ubications.controls.Clear()
While i < (current_Page * 12) And i < show_categories.Count
Dim position As Point = CreatePositionSub(i)
show_categories(i).Image.Location = position
Me.P_Ubications.Add(show_categories(i).Image)
i += 1
End While
P_Ubications.ResumeLayout()
|