I have a form with several check boxes that will toggle depending on other controls/ Currently I have this:
but is there a "cleaner" or more proficient way to code this?
Code:
Private Sub frmPaymentType_AfterUpdate()
chJan.Value = 0
chFeb.Value = 0
chMar.Value = 0
chApril.Value = 0
chMay.Value = 0
chJune.Value = 0
chJuly.Value = 0
chAug.Value = 0
chSep.Value = 0
chOct.Value = 0
chNov.Value = 0
chDec.Value = 0
End Sub
but is there a "cleaner" or more proficient way to code this?