0
votes
0answers
19 views

MVSC deletes lib and dll when building exe

I have a create a new solution in MVS with two project: an exe application and its dynamic library. For the Release configuration I made the linker create the exe, dll and lib inside the same folder. ...
0
votes
0answers
23 views

IronPython pyc.py -> .exe : How to compile a program that imports an external dll?

I am using the pyc.py file to create a .exe file of my IronPython project. It seems that pyc.py cannot deal with programs that use external dlls. I did several tests and the problem seems to come down ...
1
vote
2answers
187 views

Assembly + Meta Data + Assembly Manifest + MSIL CODE

Can any one will answer the following questions. I am using c# language. Can I call Assembly as .ddl or .exe file? Can I call Assembly Manifest as assembly? What is different between Assembly, meta ...
2
votes
0answers
62 views

how to convert a msvc exe project to a dll project?

in the exe project: int WINAPI WinMain( __in HINSTANCE hInstance, __in_opt HINSTANCE hPrevInstance, __in_opt LPSTR lpCmdLine, __in int nShowCmd ) { ...
0
votes
0answers
127 views

Executable built with VS2010 is not a valid win32 application; bindump says it's a DLL

I've been making a C++ program involving FFTs, and it worked fine up until I decided to use FFTW. After making the libraries from the .def files and linking them to my project, it builds successfully. ...
0
votes
0answers
20 views

feed dll with data from exe and return the processed data back to exe - how?

so I've just managed to create my first dll. Put a couple of functions in it and I'm also able to implement them in my app. But... the functions change (besides their actual purpose) variable values. ...
2
votes
2answers
96 views

How to inspect a DLL for information

Is there a way to inspect a single(C++ compiled) DLL file and find out what Win32 function calls it makes? I have MyDll.dll file. I know that somewhere inside this dll, there is a piece of code that ...
1
vote
1answer
130 views

Game Engine as EXE and Game as DLL?

Hi guys I'm starting the design of a new little game engine and I was assuming the game engine as a DLL and then build a project for the game that would use this DLL and output an EXE file. But then ...
0
votes
2answers
122 views

WPF. Embed DLL into EXE

I'm looking to embed a DLL into the EXE of my WPF application so that I effectively only have 1 file to distribute, i.e. the .EXE. All of this stuff is completely over my head but I've followed the ...
0
votes
1answer
81 views

Fails loading dll library in Windows 7 Enterprise 64 bits when run by Authenticated User

Been struggling to resolve this issue for a while. any help will be much appreciated. My windows application 'exe' fails to load following Dlls. - zlib.dll and zlib1.dll (using DOTZLIB wrapper) To ...
0
votes
1answer
232 views

How to use ilMerge to merge dll into an exe file? [duplicate]

Possible Duplicate: Merging .dll with .exe Okay, so... I have all the files of ilmerge, along with the .exe (CabalMain.exe) and the dll (crckd.dll) in one path. C:\Program Files ...
6
votes
6answers
318 views

Which approach better: Process.Start or call DLL directly?

In our team we've faced with the choice: we need to call external third party code and process its output from our C# code. The third party code available in two forms: set of dlls and single exe ...
0
votes
1answer
82 views

Creating DLL using MASM32

I have a problem creating DLL in masm32. No matter what I do the output is always *.exe file, not the *.dll. The following codes are in fact those created by masm32 -> Code -> Create New DLL. I just ...
-2
votes
1answer
123 views

C++ exe to dll to use as a component (CLR)

I have a Program.exe which is written with c++. And a c++ file that shows c++ exe source codes only. So first of all I tried to use Cmake program to change and debug c++ exe. After this I must ...
0
votes
0answers
112 views

How to debug C++ (unmanged) dll from a C#(managed) exe

I created a C++ dll(64 bit) and I am trying to call a function in the dll from a C# exe(64 bit). The C# exe in running in a 64 bit machine. I tried testing it in both VS 2005 & VS 2008. I am ...
0
votes
1answer
118 views

Loading dll library from Resource to Current Domain(Embedding dll in main exe file)

I'm trying to load dll libraries during runtime using the following code so that I don't have to provide the user with lot of dll files along with the main executable file. I have inlude all the dll ...
0
votes
2answers
223 views

visual studio 2010 release can't find dll

I've build a project with opencv, when I share my .exe on other pc they can't find some dlls, this happens in release and debug mode, I searched on the web and I know I must configure the properties ...
1
vote
3answers
295 views

How do I stop my class library generating an .EXE file and causing a TypeLoadException Exception?

I've got a really strange error occurring in my solution one of my projects which is a class library is causing a project it is referenced in to throw a TypeLoadException. I've looked through various ...
2
votes
2answers
80 views

Bitwise comparing .exe and .dll with AssemlyInfo.cs included

Background: I have been charged with trying to come up with a new way to compare dlls and exes that use AssemblyInfo to embed a version number. Every time we do a new build, the version gets ...
1
vote
2answers
266 views

How to run an EXE when another exe is running?

How do I make an exe run automatically when another exe is launched? Example : EXE 1 is launched & running EXE 2 will run automatically once it see that the EXE 1 has already launched. What is ...
0
votes
1answer
118 views

Two instances of application and dll it loads

I have an executable(VC++) which is run twice with different command line parameters, so basically there are two instances running. This executable loads an C# dll ,First thing i want to know is if ...
0
votes
1answer
278 views

Image base address of foreign exe/dll or WTF?

I have a foreign process (exe-file DllProj.exe is running), that has SampleDll.dll linked to it (implicit linking). I can find the base address of the linked dll with the help of my function ...
0
votes
2answers
436 views

Create a stand-alone C# executable that references a 3rd-party DLL? [duplicate]

Possible Duplicate: Embedding DLLs in a compiled executable I would like to make a stand alone program in C#, I have a referenced dll, so I can't just copy the exe from bin/release/.exe, I ...
2
votes
4answers
227 views

Embed all DLLs in win app and C#

I use this code to embed all dlls to app exe file but this code can embed only one dll. i search for other code but all are same that. public App() { AppDomain.CurrentDomain.AssemblyResolve +=new ...
1
vote
1answer
240 views

How do I load a dll's config file inside another appdomain

I have an application that needs to load an add-on in the form of a dll. The dll needs to take its configuration information from a configuration (app.config) file. I want to dynamically find out the ...
0
votes
1answer
883 views

how to open dll and exe files in ubuntu

I have a few dll and exe files. My laptop has ubuntu version 12.04 installed in it. Can anybody give me suggestion what should I be doing now so that the file runs on Ubuntu?
0
votes
1answer
39 views

automation of tasks

which scripting language/tool is best for automating a task? I have an exe for which I don't know any of the list of functions used. if I know any of the functions used, then I thought I can try ...
4
votes
3answers
2k views

How to check if an executable or DLL is build in Release or Debug mode (C++)

I need to find the mode exe/dll was build looking at its headers. [edit] Using c++ only without any external tools.[/edit] There is an old discussion how to determine dll was built in Release or ...
0
votes
5answers
455 views

Is Splitting WPF Application into multiple dll's is good or bad?

Previously my WPF Application size was 4096KB as a single .exe file. Now i have splitted the application as multiple like this JIMS.exe Main Application-->103KB JIMSDAL.dll Data ...
2
votes
3answers
93 views

How do you identify a driver executable?

How do you determine whether a given exe or dll or sys file is actually a driver? I mean what differentiates a driver from a normal executable?
1
vote
2answers
109 views

Do I need all the nokia qt DLLs?

If I release a program built in the QT framework: 1) How do I find which DLL's I need to include 2) Do I HAVE to include DLL's or is the code compiled into the EXE The program is very simple, just ...
-1
votes
1answer
455 views

Best software to protection C++ DLL and .net EXE [closed]

Currently I am using smart assembly for my .net EXE programs. It works great, but the problem is it is still pretty easy to crack. I know this because even on max settings I can still crack my own ...
0
votes
2answers
202 views

getprocaddress acting different from a dll and an exe

I'm trying get the address of GetProcAddress with GetProcAddress (yes. calling it on itself). When I'm doing it from an empty exe project I get a valid address (between the allocated address of ...
0
votes
0answers
168 views

Will running exe in memory perform better than dll in .NET?

I need to dynamically load a dll/exe into memory based on database configurations. I can either 1) load the dll or 2) load an win form exe which calls the dll. Is there a performance difference ...
4
votes
2answers
822 views

how to include opencv dlls in order for exe to run

I am wondering how do I allow my OpenCV project exe file to run on other Windows 7 machines without modifying other pcs. It runs on mine as I have all the libs installed. Can I embed the necessary ...
1
vote
4answers
219 views

Starting a DLL as a exe

Is it possible to load a native (C++) DLL as an executable? preferablly straight from the memory without creating EXE on the hard-drive or something similar?
0
votes
1answer
522 views

How to read icons from .exe and .dlls in C++/Qt (on windows)?

How can I read the icons from a DLL or an EXE file, using C++ (and Qt) ? I can't find anything relevant on google, I only get how to change application icon using qt, which is not what I need.
1
vote
1answer
748 views

Cx_Freeze DLL load failed

I have been trying to use cx_freeze for some time now, and yet the same error always occurs import cx_Freeze.util ImportError: DLL load failed: %1 is not a valid win32 application I have tried ...
-4
votes
2answers
448 views

Control Win32 process from injected DLL (VC++.NET 2010)

I've injected a DLL file into another process and I wish to communicate with it though an external EXE. How can I communicate with the injected DLL? :/
6
votes
3answers
1k views

Converting .exe project to class library

I have a semi-large C# .exe project in visual studio 2010 Ultimate, and I would like to convert it to a DLL class library. Is there an easy way to do this that doesn't involve creating a new class ...
0
votes
3answers
276 views

How to make a C++ program look for DLLs?

I want to be able to store DLLs in sub-folders without the EXE complaining about a missing DLL. How do I make the EXE look in a sub-folder, such as "DLLs"? If this has anything to do with it, my IDE ...
0
votes
0answers
53 views

exe is not execute in 64 bit machine

I have a dll Hello.dll but now I changed the name of dell for 64 bit like hellox64.dll.but the problem is when I execute the exe the error message shows that The program can't start becouse the ...
0
votes
0answers
164 views

DLL Searching and Loading on Windows7

Nowdays I've met a strange problem about DLL searching and loading on Windows7: I'm sure that I set the correct Path Environment Variable such as : ......;C:/SomeProblem/Bin and under the ...
0
votes
3answers
139 views

What BEST to use in .NET Form Application , DLL OR EXE?

I'm developing a .NET WINDOWS FORM Application , I need to develop a search module and this search could be used in many other applications, i'm wondering what is best to to Develeop Search as : ...
0
votes
2answers
358 views

Path to exe in dll when used in ASP.NET MVC Application in Debug

I've written a wrapper for a 3rd party exe. The exe is in a folder inside my class library project and is deployed with the dll. Unit testing the method that starts the process containing this exe ...
0
votes
1answer
137 views

Ways of packaging up a custom DLL with 3rd Party exe

I'm curious to know how to wrap up some 3rd party exe files into my dll for deployment. At the moment we rely on the deployed system having the 3rd party software installed and our wrapper exposes ...
9
votes
3answers
174 views

Is there a reason to create a .net DLL rather than EXE if file is used as a referenced assembly?

I noticed that I can add a reference not only to a DLL but also to an EXE in Visual Studio and access all classes in the EXE as it if were a DLL. Is there any reason to create a DLL or can I just as ...
5
votes
1answer
10k views

The program can't start because cygwin1.dll is missing… in Eclipse CDT

I've had Eclipse for Java on my computer for a few years, and decided to install the CDT and learn C. I installed both MinGW and Cygwin and the CDT detects and tries to use them when I make a new ...
1
vote
2answers
3k views

How to check if a file is signed in C#? [closed]

I'm writing a program that need to load a few other files. is there a way to check if those files are signed or not, without right clicking them and check? I use 300-400 files that change every few ...
1
vote
2answers
3k views

How to embedd openCV Dll's in Executable

I wrote an image matching tool (console application, without gui or windows), using openCV. I want to port my EXE file to another computer but it asks for opencv dlls (opencv_core220.dll, ...

1 2