Ciao Cristian, leggo ora il messaggio.
Ho risolto.
Praticamente, all'interno degli eventi di 2 check box (se non ricordo male checked_change), andavo a testare lo stato della proprietà checked.
Esempio:
Private Sub CheckBox1_CheckedChanged(sender As Object, e As System.EventArgs)
If CheckBox1.checked then
......
Else
......
End If
End Sub
In sostanza al form_load() setto a true una variabile startup booleana che vado a testare dentro l'evento.
Private Sub CheckBox1_CheckedChanged(sender As Object, e As System.EventArgs)
If StartUp then
If CheckBox1.checked then
......
Else
......
End If
End If
End Sub
Così facendo ho chiuso il problema, mi era passato di mente di questo aspetto.
Ti ringrazio.
Saluti