VintaSoft Twain ActiveX Discussions

Questions, comments and suggestions concerning VintaSoft Twain ActiveX.

Board index < VintaSoft Twain < VintaSoft Twain ActiveX Discussions

We are migrating to new forums engine, no new registration or posting currently available. TIA for your patience.

KB: Hiding user interface at scanning.



KB: Hiding user interface at scanning.

Post by Alex »

User interface of scanner can be hidden only if you use TWAIN driver for your scanner.
WIA driver does not allow to hide (disable) user interface - it's limitation of WIA drivers when they are used via TWAIN interface.

Here is a code snippet for Visual Basic that shows how to acquire images without UI:
  VSTwain1.StartDevice()
  If VSTwain1.SelectSource() Then
    VSTwain1.ShowUI = False
    VSTwain1.DisableAfterAcquire = True
    VSTwain1.OpenDataSource()
    VSTwain1.UnitOfMeasure = 0     ' 0-Inches, 1-Centimeters, ..., 5-Pixels
    VSTwain1.PixelType = 1         ' 0-BW, 1-Palette/gray, 2-RGB
    VSTwain1.Acquire()
  End If


Page 1 from 1: 1