05-16-2019 10:09 PM
Dear Sir.
I found the problem parallel port with windows 10 after install labview 2016. Labview can't detect parallel port and I think cviVXDWrapper.dll is a problem. Please see images in attach file and give me a piece of advice.
Regards.
05-17-2019 01:15 AM
Hi 007x,
you cannot use InPort/OutPort functions in Windows10. Not in Windows8, nor Windows7.
These functions were used the last time on Windows95…
When you want to access a (parallel) port you need to use a real device driver for that port. Have you tried to use VISA functions to get access to "LPTx"?
05-17-2019 10:17 PM
Hi Gerdw,
This code is work on windows 7, but I change to windows 10 is not work.
My program working for write data to parallel (outport). Do you have any more suggestions about this issue?
Regards
05-19-2019 06:25 AM - edited 05-19-2019 06:31 AM
@GerdW wrote:
[...]
When you want to access a (parallel) port you need to use a real device driver for that port. Have you tried to use VISA functions to get access to "LPTx"?
a few years ago, one of the Laptops at work had a dockingstation which still had a LPT (line printing terminal) socket.
LPT is the designation of a parallel port interface on some computer systems.
This PC was formerly a Windows 7 professional x64 machine upgraded to Windows 10,
running LabView 2015 x32
In LabView's NI Max, this device did show up as LPT1 (after I had installed the VISA drivers manually for a different project, if I remember correctly)
I never had any use case for this, but if I had to, I would try Gerd's suggestion, regarding the VISA VIs and Functions
09-25-2019 04:05 AM
Hi
I have same problem. My application works with In Port and Out Port vi's at WIN7 but at WIN10 it does not recognizes cviVXDWrapper.dll.
Did you find solution for this problem?
09-25-2019 04:25 AM - edited 09-25-2019 04:25 AM
Hi Alex,
as I wrote some month ago recent Windows versions don't allow direct hardware access (like you need with those InPort/OutPort functions).
Use another driver for your old hardware or use modern hardware with Win10 support…
09-25-2019 04:58 AM
The cviVXDDriver is not available for 64 Bit Windows, and the functionality it uses internally is not supported in 64 Bit Windows either so porting it to 64 Bit Windows was not an option.
It would probably work in a 32 Bit Windows 10 installation but that is almost impossible to get at nowadays.
09-25-2019 06:03 AM
I see that I have no choice and at WIN10 OS I will replace parallel port I/O control by USB digital I/O control module.
Thanks for help.