Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access Checkboxes- Test to see if Selected

Status
Not open for further replies.

gregger20

Technical User
Mar 16, 2005
12
US
Hello,
Could someone help me know how to check if a checkbox has been selected?
So far I've got:

If Me.Check1 Then
something here

End if

Thanks for your help in advance!
Gregger20
 
If you mean that you want to check if the checkbox is checked, then you're there. Me.Check1 will return True if it's Checked. Or you could use Me.Check1.Value
 
How are ya gregger20 . . .
Code:
[blue]   If Me.Check1 = true Then
      [green]'code for checked[/green]
   Else
      [green]'code for unchecked[/green]
   End IF[/blue]

Calvin.gif
See Ya! . . . . . .
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top