Makes CheckBox control appear with a check mark: : CheckBox « Forms « VBA / Excel / Access / Word






Makes CheckBox control appear with a check mark:

 
Sub value()
  UserForm1.CheckBox1.Value = True
End Sub

 








Related examples in the same category

1.CheckBox returns a True value when checked, or a False value if not.
2.Check various properties of the controls and take appropriate actions