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)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.