Attachment Control

J

Jeff G

All -

I like the attachment field in 2007. The question I have is there a way to
display the Attachment dialog box as a control on a form? Meaning, is there
a way to show the Manage Attachments box that has the Add, Remove, Open,
etc. on a Form instead of the paperclip icon?

Thanks.

Jeff
 
M

Mark Andrews

I usually have a button "manage attachments" that when clicked calls this
code:
DoCmd.GoToControl "Attachments"
DoCmd.RunCommand acCmdManageAttachments

Where "Attachments" is the name of the attachment control.

So it will popup the box just like if you selected manage attachments

Does that work?

A little more user friendly than just having the attachment control itself.

HTH,
Mark
RPT Software
http://www.rptsoftware.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top