Search found 15 matches

by LotusGuy
Fri Aug 02, 2013 6:07 am
Forum: General discussions
Topic: Instantiate GDPicture Object in new version
Replies: 1
Views: 10444

Instantiate GDPicture Object in new version

I have been using the Version 5 of the active X component in a scripted application. Currently to instantiate the object I would use the following code: Set oGdPicture = CreateObject("gdpicturepro5.imaging") oGdPicture.SetLicenseNumber("111111111111111111") 'Demo code version Wit...
by LotusGuy
Sun Jun 06, 2010 6:03 pm
Forum: Image Processing & Document Imaging
Topic: Print tray selection issue
Replies: 6
Views: 3724

Re: Print tray selection issue

OK... I think I may have figured this one out... apparently, the HP drive shows the trays as numbers above 256. I was able to address the trays using those numbers in the "custom" range.

Hope this saves someone else several hours worth of work... :)

Thanks,
Keith
by LotusGuy
Wed Jun 02, 2010 2:24 am
Forum: Image Processing & Document Imaging
Topic: Print tray selection issue
Replies: 6
Views: 3724

Re: Print tray selection issue

Loic,

Since this thread, I have aquired a new printer (HP 9050dn) and I cannot address any of the trays on that machine. Using the interation code, the only tray supported returns code 15.

Is there a driver setting or software setting that I need to use to make this work again?

Thanks,
Keith
by LotusGuy
Sun Sep 13, 2009 2:09 am
Forum: Image Processing & Document Imaging
Topic: Web enable your application
Replies: 5
Views: 3663

Re: Web enable your application

Loic, Do you have a way that we can use the OCX on a secured web server without putting the license key in plain text? Can you create a special signed version that doesn't need a key? We would be willing to pay for that, no problem. We want to give our customers a way to scan a document into our sy...
by LotusGuy
Sat Aug 01, 2009 5:24 am
Forum: Image Processing & Document Imaging
Topic: Web enable your application
Replies: 5
Views: 3663

Re: Web enable your application

Loic, Do you have a way that we can use the OCX on a secured web server without putting the license key in plain text? Can you create a special signed version that doesn't need a key? We would be willing to pay for that, no problem. We want to give our customers a way to scan a document into our sys...
by LotusGuy
Sat Aug 01, 2009 4:48 am
Forum: Feature Requests
Topic: Base64 Decode/Encode
Replies: 4
Views: 6380

Re: Base64 Decode/Encode

Loic,

I never thanked you for this feature. I have used it in my application and it has made the program 10x faster!

Thanks again!

Keith
by LotusGuy
Tue Jun 16, 2009 6:22 am
Forum: TWAIN & WIA Acquisition
Topic: scan document on web
Replies: 9
Views: 21440

Re: scan document on web

I am also looking for a way to save the image back to a server through the post. I have not been able to figure a way to get a handle on the image to upload it. Any examples?

thanks,
Keith
by LotusGuy
Tue Jun 09, 2009 4:32 am
Forum: OCR, MRC & Document understanding
Topic: Recognize rotated image?
Replies: 2
Views: 3133

Re: Recognize rotated image?

A couple of questions...

Can you rotate a multipage tiff? or do you have to do one image at a time?

If so, is there a code sample?

Thanks,
Keith
by LotusGuy
Sat Apr 12, 2008 4:54 am
Forum: Feature Requests
Topic: Base64 Decode/Encode
Replies: 4
Views: 6380

Base64 Decode/Encode

Loic, It would be a great feature if you could add methods that you could pass Base64 encoded text into and generate an image or vice versa. Currently, I aquire postage labels from a USPS postal server after passing shipping data. The labels are XML responses with base64 encoded images that have the...
by LotusGuy
Wed Feb 06, 2008 5:23 am
Forum: Licensing
Topic: Temp Key until real one arrives
Replies: 1
Views: 3204

Temp Key until real one arrives

Loic,

Can you provide me with another temp key until we get our purchased one? We have hit our 30 day window and we purchased today using a company check which will take several days to process.

Thanks,
Keith (eChart Solutions)
by LotusGuy
Sun Jan 06, 2008 1:17 am
Forum: Image Processing & Document Imaging
Topic: Print tray selection issue
Replies: 6
Views: 3724

Re: Print tray selection issue

Ok.. after further testing it looks like that no matter what tray i choose, it will only use the first one for the entire session. I need to print to the upper tray to print a label first then print the rest of the document. New test code below: Function printShippingLabelE(path As String) As Boolea...
by LotusGuy
Sat Jan 05, 2008 5:48 am
Forum: Image Processing & Document Imaging
Topic: Print tray selection issue
Replies: 6
Views: 3724

Re: Print tray selection issue

Looks liked that worked. I was associating "manual" with the manual input tray on my printer...

Thanks!

Keith
by LotusGuy
Fri Jan 04, 2008 7:36 am
Forum: Image Processing & Document Imaging
Topic: Print tray selection issue
Replies: 6
Views: 3724

Print tray selection issue

I set a specific print tray in my code but it is random on whether the system will use the right tray. It will for some prints and others it will use the default tray. Below is my code: Function printShippingLabelE(path As String) As Boolean Dim tray As Long tray = 4 Dim oGdPicture As Variant Set oG...
by LotusGuy
Fri Dec 21, 2007 6:40 am
Forum: Image Processing & Document Imaging
Topic: multi page tiff print error
Replies: 1
Views: 2164

figured it out

It was a bad printer driver..... :evil:
by LotusGuy
Fri Dec 21, 2007 12:08 am
Forum: Image Processing & Document Imaging
Topic: multi page tiff print error
Replies: 1
Views: 2164

multi page tiff print error

I am printing a multi page tiff and when it prints, it will print one page with all of the pages merged together in the image. below is my code oGdPicture.CreateImageFromFile(newFileName) Call oGDPicture.PrintSetFromToPage(1,10) Call oGDPicture.PrintImage() When i view the file in a viewer, it looks...