LEADTOOLS Support
Imaging
Imaging SDK Questions
Re: Set Path and Filename for Twain Scanning
This topic and its replies were posted before the current version of LEADTOOLS was released and may no longer be applicable.
#1
Posted
:
Thursday, June 21, 2007 12:54:09 PM(UTC)
Groups: Registered
Posts: 1
I need to set the path and filename for scanning from FastTwain. I do NOT want FastTwain to do it for me. I will do the incrementing myself. How to I accomplish this?
VB6
Document Imaging Suite 14 COM
Thanks!
#2
Posted
:
Sunday, June 24, 2007 7:43:24 AM(UTC)
Groups: Guests
Posts: 3,022
Was thanked: 2 time(s) in 2 post(s)
You can change the file names after FastTwain saves them, using
the AcquireMultiEvent subroutine. For example, if you want the file counter to
increment by 10 instead of 1, you could add this code in the event handler:
If bFinishScan Then
global_i = global_i
+ 10
Name bstrFileName
As "File" + Trim(global_i) + ".tif"
End If
LEADTOOLS Support
Imaging
Imaging SDK Questions
Re: Set Path and Filename for Twain Scanning
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.