Search found 102 matches

by Tom Moran
Thu Oct 28, 2010 10:37 pm
Forum: Image Processing & Document Imaging
Topic: Capture User Control In Image
Replies: 2
Views: 2178

Capture User Control In Image

Hi Loic:

I have a new project where I need to embed a few VB6 Text Boxes in the GdViewerCnt control.

My question is: Is there a way to capture the text box controls as part of the image?

Thanks,

Tom
by Tom Moran
Sat Oct 16, 2010 3:27 pm
Forum: Document Viewing
Topic: Multi-page PDF only displays page 1
Replies: 3
Views: 3139

Re: Multi-page PDF only displays page 1

As you've seen you cannot emulate Adobe Readers continuous page mode.

You can, however, use the Mouse Wheel to scroll between pages when you have ContinuousViewMode set to True.

Tom
by Tom Moran
Mon Sep 06, 2010 6:04 pm
Forum: Image Processing & Document Imaging
Topic: DropFile Event and Outlook
Replies: 4
Views: 2358

Re: DropFile Event and Outlook

I don't actually use Outlook and I don't even have it on my computer. However, my client is using the Office 2007 version of Outlook. After doing some research I did find a Class Module and .TLB module that can get the information from an Outlook Attachment. This will only work if a control has an O...
by Tom Moran
Mon Sep 06, 2010 5:05 pm
Forum: Image Processing & Document Imaging
Topic: DropFile Event and Outlook
Replies: 4
Views: 2358

Re: DropFile Event and Outlook

Thanks, Loic. I, too, don't much care for Outlook. However I have a couple of clients that use it. I appreciate you looking into this issue.

Best regards,

Tom
by Tom Moran
Mon Sep 06, 2010 3:21 am
Forum: Image Processing & Document Imaging
Topic: wrong orientation
Replies: 11
Views: 3954

Re: wrong orientation

ClipFix:

My suggestion is that you do a search across your entire computer for gdiimgplug.dll and gdpicturepro5.ocx. Make sure you only have the latest versions on your computer.

I had the same problem until I did this.

Tom
by Tom Moran
Sun Sep 05, 2010 4:37 pm
Forum: Image Processing & Document Imaging
Topic: DropFile Event and Outlook
Replies: 4
Views: 2358

DropFile Event and Outlook

Bonjour Loic: I discovered that the GdViewer FileDrop Event does not get the file/pathname when dragging an image attachment from Outlook. It works well from all other sources, i.e. Windows Explorer, GMail, Live Mail, etc., but not Outlook. My guess is that Outlook doesn't follow the standard OleDra...
by Tom Moran
Sun Aug 08, 2010 4:10 am
Forum: Document Viewing
Topic: vb6 cumulative upgrade
Replies: 8
Views: 4593

Re: vb6 cumulative upgrade

Hi Jim: This isn't a hidden problem or a bug. Even if you have the current dll's and ocx in all the places you mentioned, if you have an outdated dll in a folder with your application it will use the old dll . The only solution at this point is find every copy of the dll on your system and check for...
by Tom Moran
Fri Aug 06, 2010 6:50 pm
Forum: Document Viewing
Topic: vb6 cumulative upgrade
Replies: 8
Views: 4593

Re: vb6 cumulative upgrade

What I'm telling you, Jim, is that you already have the update. If you have an outdated dll in your application directory, another update is not going to change that. When installing an update it will install the update files to your Windows system directory and again to the directory where you stor...
by Tom Moran
Thu Aug 05, 2010 9:04 pm
Forum: Document Viewing
Topic: vb6 cumulative upgrade
Replies: 8
Views: 4593

Re: vb6 cumulative upgrade

Hi Jim: I had the same problem with the last update... and what I quickly found is that the problem was a mix and match problem. I have the optional dll's (gdimgplug.dll, gdpdfplug.dll, etc) stored in application directories. When the main ocx got updated, the old dll's were still stored in various ...
by Tom Moran
Fri Jun 18, 2010 6:58 pm
Forum: Example requests & Code samples
Topic: DisplayFromFile MessageBox
Replies: 1
Views: 1769

Re: DisplayFromFile MessageBox

Hi John:

The answer is yes. Set the gdViewer Silent Mode property to True to supress the internal error messages. Then create your own error trapping routine.

Tom
by Tom Moran
Mon Mar 29, 2010 5:35 pm
Forum: Image Processing & Document Imaging
Topic: Multi-pages : how to keep the changes (draw, ...) ?
Replies: 10
Views: 3670

Re: Multi-pages : how to keep the changes (draw, ...) ?

Hi Louis: Yes that's basically correct. A couple of things... 1. Be sure to lock the viewer right before your For/Next Loop: oGdViewer.LockControl = True 2. Remember to Close the new multipage Tiff and unlock the viewer right after your For/Next Loop: oImaging.TiffCloseNativeMultiPage oGdViewer.Lock...
by Tom Moran
Fri Mar 26, 2010 7:05 pm
Forum: Image Processing & Document Imaging
Topic: Multi-pages : how to keep the changes (draw, ...) ?
Replies: 10
Views: 3670

Re: Multi-pages : how to keep the changes (draw, ...) ?

Hi Louis: The easiest way I've found to edit a multipage document is to convert/copy it to a multipage TIFF. I added a multi undo/redo feature that allows you to make changes on the page that is being displayed. When you navigate to a new page, however, those changes become a permanent part of the m...
by Tom Moran
Thu Mar 18, 2010 3:38 am
Forum: Document Viewing
Topic: GDViewer As Container Control
Replies: 3
Views: 2456

Re: GDViewer As Container Control

Hi jpbro:

Are you using GdPicturePro Active-X components? There already are two versions of the GdViewer. One is GdViewer and the other is GdViewerCnt, which is the GdViewer container control.

Tom
by Tom Moran
Tue Mar 16, 2010 4:49 am
Forum: Image Processing & Document Imaging
Topic: Scrollbar
Replies: 4
Views: 14136

Re: Scrollbar

Scrollbars is a property of the GdViewer. Set to True for scrollbars or to False for no scrollbars.

Tom
by Tom Moran
Sat Feb 27, 2010 2:22 am
Forum: Document Viewing
Topic: cannot display pdfs
Replies: 1
Views: 1610

Re: cannot display pdfs

Hi and welcome!

For PDF Display it's a little different. You need to open your file from the GdViewer object:

GdViewer1.DisplayFromFile Method (Path/Filename, Password)

Of course the Password is only required if the PDF file is encrypted.

Tom