1

I'm trying to remove the scanner property option. It comes from when I press Acquire button from menu strip. My aim to remove that Scann Property Screen but Can't. Any way to remove that screen? (that form not defined inside project) project source code at: C# Scanner Twain

http://hizliresim.com/zRRk8O

Steve Byrne
  • 1,320
  • 1
  • 16
  • 29
BCA
  • 438
  • 6
  • 21

1 Answers1

1

Try updating the value of TwUserInterface in TwainLib.cs:

TwUserInterface guif = new TwUserInterface();
guif.ShowUI = 0; // hide the user interface of scanner
Rachel
  • 1,372
  • 1
  • 8
  • 11