Windows error 126 when opening proficy Hmi/Scada - plc

Hi I was trying to run a program (Proficy Hmi) but I got more than one dll error, Windows error 126
I have attached all the error images here with the Windows version
Device type ("All-in-One" 15-panel marine)
Windows version (Windows XP for embedded systems)
Also I downloaded all the missing dll files but it didn't solve the problem
I can't change Windows
Picture of: ifix startup . version 4.0 [build 6192]
Picture of: ifix startup program error code : 126
Picture of : ifix startup error
Picture of:startup history

Related

Fail test in VSC using Robot Framework

Learning RobotFramework using VSC.
Got downloaded chromedriver_win32.zip for Chrome 98 from here::
https://chromedriver.storage.googleapis.com/index.html?path=98.0.4758.80/
When I run my 1st test in VSC I get fail and the message shows:
This version of ChromeDriver only supports Chrome version 93
Current browser version is 98.0.4758.82 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe
Why it says Chrome version 93 when it's 98?
Thanks.
You have to replace that chromedriver.exe by the one you have downloaded and extracted.
You need to know where that executable is (being found from the PATH environment variable).

EasyPHP won't start - error 0xc000007b even though C++ redistributables are there

EasyPHP-devserver-17.0 throws this error when starting the dashboard (win 7 x64):
Problem is I installed the 3 C++ redistributables they list: http://www.easyphp.org/faq_devserver.php#collapse001
first x64
then x64 + x86
then removed everything, installed only x86
then added x64 back
Still get the same error.
How can I fix it or get more info about what exactly is failing?

Qt 5.6 on windows compilier error

I'm starting out with QT creator
My objective is to use it to create a Application using Qt3D and QT quick Ui
When I try to create a project it shows me I don't have a compiler yet: (screenshot on link)
QT new project, no compiler error
If I try to build an example it shows me the following error:
16:35:11: Configuration is faulty. Check the Issues view for details.
Error while building/deploying project shadow-map-qml (kit: Desktop Qt 5.6.0 MSVC2015 64bit)
When executing step "Make"
Did I do something wrong on the installation or Do I need to download and install a separate compiler? If so for Qt 5.6 on windows 10 which should I download?

Using WebKit for SWT Browser occurs error on x64 OS

My question is a bit like unexplored's.
My enviroment:
OS: windows server 2008 r2 (x64)
Safari installed 5.1.7
32 bit SWT (eclipse SDK 3.7.2 * 32)
32 bit jvm (32)
Add -Dorg.eclipse.swt.browser.DefaultType=webkit in eclipse.ini
Add C:\Program Files(x86)\Safari\Apple Application Support in windows PATH
Code like this:
//create Mozilla browser
browser = new Browser(parent, SWT.WEBKIT); //error was caused here.
Error message:
Unhandled event loop exception
No more handles [Safari must be installed to use a SWT.WEBKIT-style Browser]
With the same configuration,when my os is win7 - 32bit,it works well.
Anybody know why,or tell me how to find the cause?
Thanks very much

Nsight Eclipse Edition not finding nvcc

I just installed CUDA 5.0 Preview (Mac OS X Lion) and I'm having trouble with Nsight.
The toolkit seems to be installed correctly. (Driver loads, nvcc -V works in bash, samples work fine).
When I create a new project I get warnings:
Error launching external scanner info generator (nvcc -dryrun ...)
Program 'nvcc' is not found in $PATH
In Preferences -> CUDA Toolkit I get no CUDA-compatible devices detected. Which is strange because I have nVidia GT 650M on my machine. So why doesn't Nsight recognize it?
If I try to build a project I get 2 errors:
/bin/sh: nvcc: command not found
make: * [src/test.o] Error 127
How do you start Nsight? Do you use /usr/local/cuda/bin/nsight? Unfortunately, it is not currently possible to launch Nsight by double-clinking the application on Mac OS X.
In the CUDA 5.0 Preview build we had a bug when shell script did not properly setup paths. This is how this script looks like in latest internal toolkit builds (you may need to adjust paths depending on your toolkit install location - in the final release installer will handle it):
#!/bin/sh
PATH="$PATH:/Developer/NVIDIA/CUDA-5.0/bin" DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:/Developer/NVIDIA/CUDA-5.0/lib" "/Developer/NVIDIA/CUDA-5.0/libnsight/nsight.app/Contents/MacOS/nsight" $#