how to call photo and faxviewer

S

susan

Hi,

How can I call the photo and faxviewer in Access2000? I'm using XP.

Thanks,

Susan
 
J

JHB

susan said:
Hi,

How can I call the photo and faxviewer in Access2000? I'm using XP.

Thanks,

Susan

Hello Susan, take a look at the Shell function.
Shell Function Example
This example uses the Shell function to run an application specified by the user. On the MacIntosh, the default drive name is "HD" and portions of the pathname are separated by colons instead of backslashes. Similarly, you would specify Macintosh folders instead of \Windows.

' Specifying 1 as the second argument opens the application in
' normal size and gives it the focus.
Dim RetVal
RetVal = Shell("C:\WINDOWS\CALC.EXE", 1) ' Run Calculator.
RegardsJørn
 

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