Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/02/2009, 11:05
thorel
 
Fecha de Ingreso: julio-2008
Mensajes: 44
Antigüedad: 15 años, 10 meses
Puntos: 0
De acuerdo Respuesta: como usar el CheckedListBox en visual estudio

bueno si a alguein le sirve ya descubri como hacerlo les dejo el codigo por si a alguien s ele ofrece:

Private Sub CheckedListBox2_SelectedIndexChanged_1(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles CheckedListBox2.ItemCheck

If (e.NewValue = CheckState.Checked) Then
Dim ix As Integer
For ix = 0 To CheckedListBox2.Items.Count - 1
If (e.Index <> ix) Then
CheckedListBox2.SetItemChecked(ix, False)
End If
Next
End If