Open Kodak Imaging

O

O Wilson

Hello,
I have a database whose records often refer to documents containing sketches
and diagrams, I would like to open Kodak Imaging to display the documents
that are referred to.

I have the documents scanned into a file with the file name
C\"JobNum"\"RFI"\"Filename"

Any ideas on how to do this?

TIA
 
O

O Wilson

Hello,

I got Kodak Imaging to open coorectly using this:
Dim objApp As Object
Dim objImg As Object
Dim FCNNumber As String 'Not sure why I made it a double
Dim OpenStr As String 'This line came from Joe

FCNNUM.SetFocus

FCNNumber = FCNNUM.Text

Set objApp = CreateObject("Imaging.Application")
Set objImg = objApp.CreateImageViewerObject(1)
objApp.ScrollBarsVisible = True



OpenStr = "C:\FCN\25168\" & FCNNumber & ".tif"
objImg.Open OpenStr

But it opens in minimized view. How do I get it to open it "Fit Screen" (?)
mode?

TIA.

Owen
 

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