Page 1 of 1

About tscanner and multipage scanner

Posted: Mon Nov 10, 2008 4:47 pm
by toninhofwi
Hi,

How I can use tscanner with multi file scanner like hp
scanjet 8460 ?

I´m using EZTWAIN 2.70 from dosadi but I can get only one page at a
time, but HP8460 can digitalize 10 pages at a time.

Thanks for any information and best regards,

Toninho.

Posted: Tue Nov 11, 2008 3:23 am
by George
Hi,
Maybe TwainControlX from http://www.ciansoft.com/ can do the job.
They have a fully functional trial version.

Regards,

George

Posted: Tue Nov 11, 2008 11:30 am
by Marco Turco
Hi,
Dosadi supports the multipage acquiring without problem.

You only need to update the Dosadi dll and use the TW_AcquireMultiPageFile method of Rafa Carmona's class.

Obviusly you have to use a multipage format like PDF or TIFF.

Posted: Fri Nov 14, 2008 10:32 am
by toninhofwi
Marco Turco wrote:Hi,
Dosadi supports the multipage acquiring without problem.

You only need to update the Dosadi dll and use the TW_AcquireMultiPageFile method of Rafa Carmona's class.

Obviusly you have to use a multipage format like PDF or TIFF.
Hi Marco, thanks.

My dosadi dll was too old. Now I update it.

Regards,

Toninho.

Posted: Sat Nov 15, 2008 11:44 pm
by toninhofwi
George wrote:Hi,
Maybe TwainControlX from http://www.ciansoft.com/ can do the job.
They have a fully functional trial version.

Regards,

George
Hi George,

This weekend I have time and I tested TwainControlX. It is really nice, I'm thinking move from dosadi to it,

Thanks a lot and best regards,

Toninho.

Posted: Sun Nov 16, 2008 5:19 am
by Jonathan Hodder
Hi

I may have a need for multi page scanning extending the customers current application.

Toninhofwi and George can I ask for the code you used please.

Thanks

Jonathan Hodder

Posted: Sun Nov 16, 2008 3:34 pm
by George
Jonathan,
I am not using the Multi-pages scanning features, but the manual explain how to use it.
It seems that Harbour does not support the licensing mechanism of ActiveX controls therefore when ordering TwainControlX send an email to Technical Support (Ian Chester the developer) indicating that your are using Harbour language.
He will send you the TwainControlX which uses a password, set in code, instead of the normal licensing system. That way you don't need the .lic file, you just add a line of code for the password, compile your application, and it will work fine, allowing you install your application along with the registered OCX in your customer's computer.

Regards,

George

Posted: Sun Nov 16, 2008 9:06 pm
by Jonathan Hodder
George

OK Thanks

Jonathan

Re: About tscanner and multipage scanner

Posted: Mon Nov 17, 2008 11:20 am
by Giovany Vecchi
toninhofwi wrote:Hi,

How I can use tscanner with multi file scanner like hp
scanjet 8460 ?

I´m using EZTWAIN 2.70 from dosadi but I can get only one page at a
time, but HP8460 can digitalize 10 pages at a time.

Thanks for any information and best regards,

Toninho.
:lol:
Ja resolvi isto
tive que alterar a classe tscan32.
Baixe aqui: http://rapidshare.com/files/164602347/TSCAN.rar.html

Para testar

_ := TScan32():New( "" )
IF _:State() < 4
MSGINFO("Não foi possivel estabelecer a conexão com _. "+CRLF+;
"Verifique se _ esta ligado e plugado neste computador.",;
"Procedimento Abortado...")
_:End()
RETURN .F.
ENDIF

_:PixelType( 1 )
_:SetRes( 150 ) // Resolucion 150 by Default.
_:SetHide( .T. )
_:SetMultiTransfer(1) // escolha 1 para scanear varias paginas
_:EnableDuplex(1)
_:SetFileFormat(4) ///4
_:SetJpegQuality(80) /// 75 default

DO WHILE .T.
nSeqImg++
cImagem:=DIR_TEMP()+"_IMG_"+LIMPO(nSeqImg,.f.)+".JPG"
AADD(aFilesScan,cImagem)
nDib:=(_:AcquireToFile(cImagem))
IF nDib < 0
EXIT
ENDIF
syswait(.5)
_:FreeDib()
syswait(.3)
ENDDO

_:End()

Posted: Tue Nov 18, 2008 4:10 am
by Jonathan Hodder
Hi Giovany

Usando eztw32.dll puede ser el más fácil.

Gracias Giovany.

Lo intentaré.

Jonathan