Whats the code to change the display text on a checkbox?
Posted by Brian P on April 20, 2001 3:37 PM
Here's part of it
Is it caption?
Set MyCheckBox = MySheet.OLEObjects.Add(ClassType:="Forms.CheckBox.1")
With MyCheckBox
.Left = 44
.Top = 110
.Width = 70
.Height = 16
End With
Thanks