Image link

J

Joseph

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 [...]?
 
R

ruralguy via AccessMonster.com

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 [...]?
 
J

Joseph

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?
 
R

ruralguy via AccessMonster.com

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
 
Top