http://bugs.winehq.org/show_bug.cgi?id=59668 --- Comment #13 from Jim Tinlin <jimtinlin@gmail.com> --- (In reply to Andrew Nguyen from comment #12)
I was able to obtain a copy of the software you're trying to run. From your debug output, I believe this is the issue that is causing the crash:
01bc:err:ole:com_get_class_object class {de52502e-f837-492b-ae14-a182531afaf4} not registered 01bc:err:ole:com_get_class_object class {de52502e-f837-492b-ae14-a182531afaf4} not registered 01bc:err:ole:com_get_class_object no class object {de52502e-f837-492b-ae14-a182531afaf4} could be created for context 0x3
I have determined that this is because the installer deploys an ActiveX control in the path "C:\windows\syswow64\FPSPRU80.ocx" but it fails to successfully register the control during the installation due to the missing redistributable library mfc42u.dll, which is not provided by Wine.
With an existing installation of the software, if I install mfc42u.dll using the winetricks script (https://gitlab.winehq.org/wine/wine/-/wikis/Winetricks) by running the command "sh winetricks mfc42" and then register the control with the command "wine regsvr32 'C:\windows\syswow64\FPSPRU80.ocx'", I am able to successfully start the software. This is the case whether I am using Wine 11.0 or Wine 11.7.
Please check if the information I provided also allows you to successfully start the software.
That did the trick, thanks so much for your assistance! Since it uses a serial port to communicate with the radio I did have to create a COM1 string value in 'HKEY_LOCAL_MACHINE\Software\Wine\Ports' and assigned it to the serial port (/dev/ttyUSB0), then I was successful in communicating with the radio. I appreciate all the help!!! -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.