Forum 'VintaSoft Twain .NET SDK Discussions'

Questions, comments and suggestions concerning VintaSoft Twain .NET SDK.

Board index < VintaSoft Twain < VintaSoft Twain .NET SDK Discussions

Login

AcquireModal and scan one by one, DSIsNotOpen Error



AcquireModal and scan one by one, DSIsNotOpen Error

Post by joher1988 »

Hello, I have a litle problem. When i try scan documents paeges one by one, first page scan normal, but next pages don't scan and Twain ErrorCode=DSIsNotOpen.
 
              _twain.SourceIndex = TwainHelper.FindSourceIndex(_twain, options.dataSource);
                _twain.OpenDataSource();
                if (_twain.FeederPresent)
                {
                    if (options.autoFeed)
                    {
                        if (_twain.XferCount != -1)
                            _twain.XferCount = -1;
                        if (!_twain.FeederEnabled)
                            _twain.FeederEnabled = true;
                        if (_twain.AutoFeed != options.autoFeed)
                            _twain.AutoFeed = options.autoFeed;
                    }
                    else
                    {
                        if (_twain.XferCount != 1)
                            _twain.XferCount = 1;
                        if (_twain.AutoFeed != options.autoFeed)
                            _twain.AutoFeed = false;
                    }
                }
                
                _twain.ShowUI = true;
                _twain.DisableAfterAcquire = false;
                while (_twain.AcquireModal()) ;
                twainScanFinished(null, null);
            }
            finally
            {
                _twain.CloseDataSource();
            }
Where is my misstake?


Re: AcquireModal and scan one by one, DSIsNotOpen Error

Post by Alex »

Hello,

Please send us more info about your problem to support@vintasoft.com.

When do you have the DSIsNotOpen error?

Best regards, Alexander


Page 1 from 1: 1