Common dialog in Access VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using a Microsoft Access 2000 database where I among others store picture files in BLOB fields. I have no problems to write a standalone application in VB or VC++ that can add new picture files to the DB, but I have been looking for a way to do it from within Access itself. I have however not succeeded. If I try to use the Common Dialog I get a message that complains about some license issues. Is there some other way?
 
Use the API call, as explained here:
http://www.mvps.org/access/api/api0001.htm

The common dialog is prone to bugs, version problems, and the license issues
you found.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

Urban Olars said:
I'm using a Microsoft Access 2000 database where I among others store
picture files in BLOB fields. I have no problems to write a standalone
application in VB or VC++ that can add new picture files to the DB, but I
have been looking for a way to do it from within Access itself. I have
however not succeeded. If I try to use the Common Dialog I get a message
that complains about some license issues. Is there some other way?
 
Back
Top