josh vandebogert
January 22nd, 1999, 11:19 AM
please give me the vb code that will make a checkbox called "resolve issue" set to true.
|
Click to See Complete Forum and Search --> : checkbox question josh vandebogert January 22nd, 1999, 11:19 AM please give me the vb code that will make a checkbox called "resolve issue" set to true. Chris Eastwood January 22nd, 1999, 02:31 PM Hi Add a check box to your form called check1 and try the following : With Check1 .Caption = "Resolve Issue" .Value = vbChecked End With Is this what you meant ? Regards Chris Eastwood Software Engineer ACNielsen Ltd CodeGuru - the website for developers http://www.codeguru.com codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |