come posso tramite un pulsante togliere la spunta ad un option button?
come posso tramite un pulsante togliere la spunta ad un option button?
nn so se ho capito bene, intendi questo ?![]()
codice:Private Sub Command1_Click() ' option button If Option1.Value = False Then Option1.Value = True Else Option1.Value = False End If End Sub Private Sub Command2_Click() ' check button If Check1.Value = 0 Then Check1.Value = 1 Else Check1.Value = 0 End If End Sub
Oppure:
codice:Check1.Value = not check1.value
si grazie a tutti