Dev Center
Table of contents

Error Troubleshooting

Source is connected to the maximum supported number of applications

Symptom

When you try to acquire images, you may get this error.

Cause

The problem may occur when the source is not disabled completely after a transfer ends or is used by other applications.

Resolution

  • Check whether another application is using the source. If yes, close it and try again.
  • Set IfDisableSourceAfterAcquire to true and use CloseSource() to make sure that the source is closed after a scanning session.
function btnScan_onclick() {
  DWObject.RegisterEvent("OnPostAllTransfers", function () {
    DWObject.CloseSource();
  });
  DWObject.SelectSource();
  DWObject.CloseSource(); //close source before open
  DWObject.OpenSource();
  DWObject.IfDisableSourceAfterAcquire = true; //close the scanner UI after acquiring
  DWObject.AcquireImage();
}
  • Reboot your device.

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest Version
    • Version 17.1.1
    • Version 17.0
    • Version 16.2
    • Version 16.1.1
    Change +
    © 2003–2022 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support