tlsn4
Aug 16 2005, 02:34 AM
I need to hide a picture on my subform when a cmd button for next record is pressed on the main form.
Tried this, but it didn't work.
me.subformname.picturename.visible = false
freakazeud
Aug 16 2005, 02:40 AM
Hi,
try:
Me!Subform.Form.Control.Visible = False
or
Forms!Mainform!Subform.Form.Control.Visible = False
One of the two should work.
Check this for more on
reference issues
HTH
Good luck
tlsn4
Aug 16 2005, 02:44 AM
Worked like a charm!! Thanks freakazeud!!
freakazeud
Aug 16 2005, 02:44 AM
You're welcome.
Glad I could assist.
Good luck on future projects!