Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/01/2009, 15:27
JhonPierre
 
Fecha de Ingreso: julio-2007
Mensajes: 19
Antigüedad: 16 años, 9 meses
Puntos: 0
De acuerdo Respuesta: Problemas con el groupbox vb.net

MMM.... Weno, En Primer Lugar Si Los Haz Colocado En Modo Diseño, De repente Los Haz Colocado como Contenedores es Decir: Uno Dentro Del Otro, Asi que Revisa bien Tu Diseño...Haz Esto: Borralos, Dibujalos Nuevamente pero uno a uno y en Posiciones distintas, luego em el FORM_LOAD colocas:
Código javascript:
Ver original
  1. groupbox2.top = groupbox1.top
  2. groupbox2.left =  groupbox1.left
  3.  
  4. groupbox3.top = groupbox1.top
  5. groupbox3.left =  groupbox1.left
  6.  
  7.  
  8. groupbox4.top = groupbox1.top
  9. groupbox4.left =  groupbox1.left


y luego haces lo que haces.

Código javascript:
Ver original
  1. groupbox1.visible=true;
  2. groupbox2.visible=false;
  3. groupbox3.visible=false;
  4. groupbox4.visible=false;
  5.  
  6.  
  7. groupbox1.visible=false;
  8. groupbox2.visible=true;
  9. groupbox3.visible=false;
  10. groupbox4.visible=false;


JHONPi.