Imports Leadtools
Imports Leadtools.Twain
PublicSub FastConfigurationExample(ByVal sender AsObject, ByVal e As TwainFastConfigurationEventArgs)
If e.FastConfiguration.Success Then' set your code here
EndIf
e.Stop = FalseEnd Sub
using Leadtools;
using Leadtools.Twain;
publicvoid FastConfigurationExample(object sender, TwainFastConfigurationEventArgs e)
{
if(e.FastConfiguration.Success)
{
// set your code here
}
e.Stop = false;
}