Using Delphi XE7 and ImageEn version 6.3.2
The customer has an HP LaserJet Pro MFP M225-M226 multifunction printer directly connected to the lan switch with an ethernet cable.
There are two computers with Windows 7 64 bits, one is working and the other not.
The one that is working has Windows 7 Professional, and the one that is not working has Windows 7 Home Premium.
In both computers the setup process of the printer driver was the same, and I can see on both a folder in Windows\twain_32 with another folder for this printer.
I use the following code to detect and list the available scanners
ImageEnMView1.MIO.TwainParams.SetDefaultParams();
for iK := 0 to ImageEnMView1.MIO.TwainParams.SourceCount - 1 do
lstSScanners.Items.Add(ImageEnMView1.MIO.TwainParams.SourceName[iK]);
I want to know or confirm me if the reason that the second one does not detect the scanner is that it has Home Premium.
Can anyone give me some directions on where to look or how to solve this problem.