i just added the refrence of Microsoft.VisualStudio.TestTools.UITesting in my project and i try to use the ImageComparer` class but i get an error when running this
private void Form1_Load(object sender, EventArgs e)
{
Image a = Image.FromFile(@"C:\Users\itapi\Desktop\a.png");
Image b = Image.FromFile(@"C:\Users\itapi\Desktop
it1352
2
2019-05-10
i just added the refrence of Microsoft.VisualStudio.TestTools.UITesting in my project and i try to use the ImageComparer` class but i get an error when running this
private void Form1_Load(object sender, EventArgs e)
{
Image a = Image.FromFile(@"C:\Users\itapi\Desktop\a.png");
Image b = Image.FromFile(@"C:\Users\itapi\Desktop
it1352
1
2019-05-15
When I make a exe from py python3 pygobject gtk3 application using the setup.py from pygobject site it misses some DLL files.
what files are missing?
Solution I have manualy tried what DLLs are required. So if this will help someone:
the setup.py must be edited. the missing_dlls list must be:
missing_dll = ['libgtk-3-0.dll',
'lib
it1352
0
2020-10-13
If you have an executable on Windows, you can view its import section with the DUMPBIN utility (included e.g. in Visual Studio).
To get a list of all imported DLLs you can run something like this (just an arbitrary example):
C:\Programme\GIMP-2.0\bin>dumpbin /IMPORTS gimp-2.4.exe | grep -i \.dll
libgimpcolor-2.0-0.dll
libgimpmath-2.0-0
it1352
1
2019-05-15
I am having a dll and which I am opening into the dependency walker with platform visual studio 2003 and OS is 2000. and my that dll find all dependency.
But when I am going to open that dll in to tha another system which is having OS- windows7 and visual studio 2010, I found missing dlls errors.
GDIPLUS.DLL,
GPSVC.DLL,
IESHIMS.DLL.
above list
it1352
2
2020-07-21
I have installed GTK (specifically GTK3) via MSYS and MinGW on Windows. I now want to copy the GTK dlls to my application directory so that it can be run on a computer without a global GTK installation. Which dlls are required for GTK to operate?
EDIT: The GTK documentation now contains instructions for distributing the required icons and the
it1352
0
2020-11-21
I have recently graduated to VS 2015. For reasons explained below, I want to avoid running the VC Redistributables installer. I am including the prescribed DLLs in my installer, for an "app local" installation:
MFC140.DLL
concrt140.dll
msvcp140.dll
vccorlib140.dll
vcruntime140.dll
mfc140u.dll
mfcm140u.dll
This seems to work. My app runs when i
it1352
1
2020-07-26
As the title says, when I'm trying to use py2exe to create a Windows executable file, I get this error:
The following modules appear to be missing
['Carbon', 'Carbon.Files', 'ElementC14N', 'OpenSSL.SSL', '_frozen_importlib', '_imp', '_scproxy', '_sysconfigdata', 'backports.ssl_match_hostname', 'builtins', 'certifi', 'charade.universaldetector', 'c
it1352
0
2020-11-02
i'm trying to debug my program, using emgu and HaarCascade in c#.
i'm getting an exception like so :
Unable to load DLL 'cvextern': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
i've added the file cvextern.dll to my project and tried both "copy always" and "copy if newer" options on the properties of the fil
it1352
41
2019-05-15
I am running into peculiar issue. I am developing a windows based application which connects to Oracle database.
For initial testings, I have created installer and tested on different machines that I have. Each machine has Oracle Client installed and I did not see any problem in running application.
But when I share this installer with customer,
it1352
10
2019-05-10