Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Deed to open microsoft document imaging in VBA - EMERGENCY

Status
Not open for further replies.

Tomadams

Programmer
Joined
Jun 26, 2001
Messages
141
Location
US
How can I open microsoft document imaging in VBA?
 
I'm not sure what mean by Microsoft document imaging. If you mean Kodak Imaging that comes with Microsoft Windows, then you could use the Shell function to launch it.
Code:
Dim Result

Result = Shell("C:\Windows\Kodakimg.exe", vbNormalFocus)
The Shell function should work for any other imaging application that you want to launch, as well.
 
I think I've found what you are referring to. Microsoft Office Tools contains a program called "Microsoft Office Document Imaging." Here's the standard install path that you could use with the Shell function.
Code:
Dim Result

Result = Shell("C:\Program Files\Common Files\Microsoft Shared\MSPaper\MSPView.exe", vbNormalFocus)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top