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!

Kodak Image Control - Help File 2

Status
Not open for further replies.

celeron895

Programmer
Joined
Jan 29, 2002
Messages
81
Location
US
Does anyone know where I can find the help file for the Kodak Image Edit Control? It does not appear to ship with Windows. The file is imgocxd.hlp.

Also, does anyone know offhand how to view multiple pages of an image using the Kodak image control? I have images that are more than one page, and I would like to allow the user to browse between the paged. I am doing this programatically in VB.

Thanks,
Bob
 
I was able to get to the help from the IDE by pressing the F1 key with the cursor on top of a specific property of an Image Edit Control.

As far as the multiple pages, I think that you can set the .Page property followed by the .Display method to move between images.
Good Luck
------------
Select * from Users where Clue > 0
0 rows returned
 
The help file ships with Win95 and Win Nt - I didn't take the time to see if it ships with other OSystems.

frmSample.oleImgEdit1.page = CInt(txtPageNo.Text)
frmSample.oleImgEdit1.Display
frmSample.oleImgThumbnail1.DeselectAllThumbs
frmSample.oleImgThumbnail1.ThumbSelected _(frmSample.oleImgEdit1.page) = True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top