Hi,
I am sorry if it is an easy question for those who are proficient in developing. We would like to use two Imager objects for the same Imaging device. Has anybody successfully done it?
According to Imager SDK Imager object can be created for non-exclusive access: public Imager(ImagerId id, bool sharedAccess);
But this addition
goImager = new Imager(moFirstImagerId, true);
Imager goImager2;
goImager2 =new Imager(moFirstImagerId, true);
at line 117 and below of Common files\ImagerScannerTriggerHelper.cs at this sample http://community.psion.com/downloads/developer_sdkhdk/m/sample__demo_code/34633.aspx
is not working for us.
Is there something we are doing wrong?
Felipe,
Sorry for the delay...
Unfortunately, you can't instantiate more than one imager object at any one time
Steven,
Thanks for your answer!
Cheers