Giter Club home page Giter Club logo

Comments (9)

 avatar commented on July 23, 2024

I'm having the same issue. Did anybody find a solution or workaround?

from twaindotnet.

mwechter avatar mwechter commented on July 23, 2024

I am tracking the exact same issue... It just started with 8.1... Not having any issues with Win7.

from twaindotnet.

bredator avatar bredator commented on July 23, 2024

I found another .NET-TWAIN-Wrapper, called Saraff.Twain:
http://sarafftwain.codeplex.com/

Working flawless under Win7 64 Bit and I will test it now for Win 8.1 64 Bit. Documentation is russian :/ but Google Translate helps with most of it. I will report the results of my tests in a few days here.

from twaindotnet.

pontusn avatar pontusn commented on July 23, 2024

I managed to get it working again by tracking status for datasource. When the datasource is disposed there is a call to close it which will result in an access violation when the datasource has not been opened...

from twaindotnet.

vincenormand avatar vincenormand commented on July 23, 2024

I also had this problem. I fixed it by adding an "if" clause in the Close() method in the Datasource class a little.

result = Twain32Native.DsmIdentity(
_applicationId,
IntPtr.Zero,
DataGroup.Control,
DataArgumentType.Identity,
Message.CloseDS,
SourceId);

Becomes :
if (result != TwainResult.Failure)
{
result = Twain32Native.DsmIdentity(
_applicationId,
IntPtr.Zero,
DataGroup.Control,
DataArgumentType.Identity,
Message.CloseDS,
SourceId);
}

Hope this helps and does not break any good behavior.

from twaindotnet.

tmyroadctfig avatar tmyroadctfig commented on July 23, 2024

@vincenormand can you issue a pull request for that fix?

from twaindotnet.

vincenormand avatar vincenormand commented on July 23, 2024

Done

from twaindotnet.

tmyroadctfig avatar tmyroadctfig commented on July 23, 2024

Thanks :)

from twaindotnet.

jeske avatar jeske commented on July 23, 2024

This seems like a relevant update to this fix...

vincenormand@07ad9a7

from twaindotnet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.