grazie milleproblema risolto semplicemente con un boolean
Dim LoadForm As Boolean
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
LoadForm = True
ricordo = My.Computer.FileSystem.ReadAllText(Application.Sta rtupPath + "\Registro.ini")
EitRicordaLeggi(Me)
LoadForm = False
Me.EitControlloDati()
End Sub
Private Sub CheckStateChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles EitInput_RadioCS.CheckedChanged, EitInput_PriceRis.CheckStateChanged, EitAstaM_Considera.CheckedChanged, _
EitInput_RadioAsta.CheckedChanged, EitSpedizione_Considera.CheckStateChanged, EitServizi_CiaFoto.CheckedChanged
If Me.LoadForm = False Then
EitControlloDati()
End If
End Sub