|
-
January 22nd, 1999, 12:19 PM
#1
checkbox question
please give me the vb code that will make a checkbox called "resolve issue" set to true.
-
January 22nd, 1999, 03:31 PM
#2
Re: checkbox question
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|