jhemphill
February 14th, 2000, 07:52 PM
Can anyone tell me of a way to view .TIF files in VB that won't require me to write a graphics conversion module of some sort?
Thanx for the help!
Thanx for the help!
|
Click to See Complete Forum and Search --> : Viewing .TIF files in VB jhemphill February 14th, 2000, 07:52 PM Can anyone tell me of a way to view .TIF files in VB that won't require me to write a graphics conversion module of some sort? Thanx for the help! Kyle Burns February 16th, 2000, 08:44 AM Use can use the Wang edit control. jhemphill February 16th, 2000, 09:54 AM Kyle, Thank you very much sir! This was exactly what I was looking for. I guess I just didn't scroll far enough down on the components list! Again, Thank you very much. Justin H. diprima February 19th, 2000, 03:45 PM add an imgEdit and an imgAdmin control on you form and use this few lines of code to view your tiff file. ImgAdmin1.Image = App.Path & "\" & "test.tif" ImgEdit1.Image = ImgAdmin1.Image ImgEdit1.ImagePalette = 3 'set for 24 bit RGB. ImgEdit1.Page = 1 'view first page in file ImgEdit1.FitTo 0 'optional best fit ImgEdit1.Display hope was of help ivan brian faux August 2nd, 2004, 11:53 AM Re viewing tiffs: The only Image admin/ image edit controls in my available references are Kodak Image Admin Control and Kodak Image Edit Control. If I tick either of these I get the message: Name conflicts with existing module, project or object library. refs ticked are Visual basic for applications Visual basic runtime objects and proceedures Visual basic objects and proceedures OLE automation Ms Data formatting obj Lib MS DAO 3.6 obj Lib Ms scripting runtime Ms CDO 1.21 lib Ms Data Binding Collection Ms Outlook9.0 obj Lib faxadmin1.0 type li faxcom1.0 type lib ms Word 9.0 obj Lib Any ideas? PS I want to view tiff files and if poss break them up into individual jpg`s Thanks in advance codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |