Is there a way to detect whether two EXE's (compiled from VS.Net 2008 for C++/MFC) do not have any code-level changes between them i.e. for purposes of knowing that there have been no statement changes.
This is for compliance purposes when my vendor ships me an exe, ostensibly with no changes made to the code since the last time we ...
We're using Visual Studio 2008's Setup Project to create an installer for our .NET 3.5 app.
We host the .exe and .msi files on a website for our client to access, and produce new ones regularly to provide updates.
This has all been fine until recently we've noticed some cases where installing via the .exe fails. The symptoms are:
The .e...
How can I retrieve in exe file point where IP is pointing to on the beginning ??
Is it pointing always on the start of .text segment ?
...
I was attempting to install an exe that requires a serial number before the install, which the vendor has not provided to us yet.
This got my wheels turning about whether there is any information that can be gained from viewing an exe using a hex editor/VI/etc?
Using VI to view an exe, I can see some sections of plain text, but it is...
It is possible to make the php projects in exe format (i.e like vb project exe format) ?
Please help me, thanks in advance
...
i have a really basic java program just one .java/.class file (.java uncompiled .class compiled i guess) how do i make something that i can have run on someone elses computer?
...
I have no experience with ColdFusion, but I'd like to find out if it's possible to call a windows .exe file from a ColdFusion app (assuming the app and the .exe are running on the same machine) and then use the response from the .exe to pass to another method in the ColdFusion app (or for simplicity's sake just display the response in an...
Please tell me how to call a unmanaged c++ exe functions from managed c++ exe or dll? help with code example would be more useful.
Thank you
...
I make this program in C++ using Code::Blocks on Ubuntu. I need to turn it into a Windows executable binary (.exe file), but I don't know how to do this. Is it possible?
...
What is a good program to get a nice, human readable form of the CLI of a portable executable file? I don't want a full disassembler because I'd like to learn how they work (or, in my case, not work).
...
Copy exe file from IIS server using VBScript
...
I've written a launcher program that fires off a given number of executables, with the following code:
Process.Start(strPath2EXE);
The problem I'm running into is it seems I'm being limited to launching only about four copies of the executable. Is there a different way I can launch the executables without this limit? I'm hoping to run ...
hi
Can anybody share code or algorithm(using pattern recognition) for image comparision in .net.
I need to compare 2 images of different resolution and textures and the find the difference . Now i have code to find the difference between 2 images using C#
// Load the images.
Bitmap bm1 = (Bitmap) (Image.FromFile(txtFile1.Text));...
Possible Duplicate:
Compiling a java program into an exe
Hi,
I'd like to convert my java application to exe file which is not depends on a pre installed JRE file.
Which tool can do so? I prefer to converty my application to a real exex file.
Thanks,
Eyal.
...
I am almost done with my project in android, now I want to make the executable version of the application.
I need to demonstrate it in .exe form as soft app as on emulator, not by built and debug process from eclipse.
need immediate idea
...
Hi
I need to call a method from an exe file
ProcessStartInfo startInfo = new ProcessStartInfo(@"exeParser.exe");
startInfo.WindowStyle = ProcessWindowStyle.Normal;
startInfo.CreateNoWindow = false;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
startInfo.Arguments...
let's say i have a setup file called setup.exe
i want to make this setup.exe include another exe file inside of it !!
how can i do that ? or what is this process called and i will try to search and learn
p.s i would do that with C , C++
p.s the other exe isn't a virus don worry :) it's a security file that will block that sof...
Hello,
I have an exe file that accpets parameters. For example,
a.exe parameter1 parameter2 parameter3
the problem is that I am not sure what parameters areavailable. Is there a way to find out it? the exe is complied by visual c++.
Thanks.
...
Is there any way that I can embed a .exe file in a .pdf, .doc, .xls, .ppt file,
and on opening the containing file, the document processor will run the .exe automatically?
...
I am working on a website with a scheduled dataloader exe. The website lives on the web server and the dataloader lives on the DB server. One of the steps in the process is for the dataloader to access the WEB server (to copy/paste a maintenance page file..e.g.\192.168.1.101\c$\maintenance.htm).
I am, not surprisingly, running into ...