Image link

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

Guest

I have a table with the field for an image that pertains to the rest of the
data in that record. I have the form for that also, but I was wondering what
the command is to have the folder list open up, ie the little command button
with the three dots [...]?
 
Call the standard Windows File Open/Save dialog box
http://www.mvps.org/access/api/api0001.htm
I have a table with the field for an image that pertains to the rest of the
data in that record. I have the form for that also, but I was wondering what
the command is to have the folder list open up, ie the little command button
with the three dots [...]?
 
But how do I use it? I have begginner's knowledge of programing functions in
VB. So alot of those variable names loose me. Do I have a command button to
call the "TestIt" function in a macro?
 
Actually your code will look more like:
Dim YourFileName As String
YourFileName = GetOpenFile()

And when the API code gets back, the filename selected will be in
YourFileName
 
Back
Top