2

i have one safran device and its driver software. but i want to control it using c#. but i am unable to locate the SDK for this morpho biometric scanner. can anyone help me, so that i can make an home application with help of that.

i have tried with following code

using Morpho;
using MorphoAPI_1_0;
using MorphoSdkLiteDotNetWrapper;

Morpho.MorphoSmart.MorphoSmartDevice mSmtDev = new Morpho.MorphoSmart.MorphoSmartDevice();

but this give following error Could not load file or assembly 'Morpho.MorphoSmart.dll' or one of its dependencies. The specified module could not be found.

2 Answers2

0

You have to copy all of the dll file located in dll folder into the folder where your application will be released, according to your target machine architecture.

0

Ok, you should have two MorphoSmart libraries. One for x64, one for x86. I was using the x64 one in AnyCpu configuration and I was getting the same error. After switching to the x86 dll it worked fine (with AnyCpu configuration and a x64 operating system).

Titanium
  • 51
  • 1
  • 4