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!

Using a Check Box to open a Picture window 1

Status
Not open for further replies.

fockewulf190

Technical User
Jan 2, 2003
23
US
Hello... I'm trying to create a check box that when checked will open a picture window on the form that can be linked to that person's photo. The box needs to remain hidden on all other records except the one(s) where the check box is checked. Any help would be appreciated.


Thanks
 
I would just put the frame with the picture on the form and set the visible property to False. Then in the check boxes on click event I would put

If Me.CheckBoxName = True Then
Me.PicBoxName.Visible = True
Else
Me.PicBoxName.Visible = False
End If

Hope that helps.

ProDev, MS Access Applications
Visit me at ==> Contact me at ==>lonniejohnson@prodev.us

May God bless you beyond your imagination!!!
 
Sorry for not getting back to you sooner.... Thank you very much for your help Lonnie! It worked perfectly! I've been out of this for a bit so it's like learning it all over.


Thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top