Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/05/2009, 03:36
Avatar de Taribo007
Taribo007
 
Fecha de Ingreso: agosto-2007
Mensajes: 1.338
Antigüedad: 17 años, 5 meses
Puntos: 18
Respuesta: UserForm en VBA Excel

Algo asi???

Private Sub ComboBox1_Change()
If Me.ComboBox1 = "Opcion1" Then
Me.ListBox1.Enabled = True
Me.ListBox2.Enabled = False
Else
Me.ListBox1.Enabled = False
Me.ListBox2.Enabled = True
End If
End Sub


Un saludo