exe

EXE extraction / decompiler

I have tried a few EXE extractor but they don't work on a lot of files. I am looking for something better. ...

Writing an executable function in C#

Hi, I'm really new to all of this. I need to write an exe application in C#. What i need to do is to be able to pass values through the console into a function. But I'm unsure as to how I can store the values that are entered through the console... I know we can use Read() to read what has been entered but, when I'm dealing with multipl...

Is it possible to run an executable from a web service?

I have a web service and I would like to call an .exe file from within it. Is this possible? If so, how is it done? ...

Issue with compiling a program into an EXE, VB 6

I have recently edited a fellow student's data collection software to my specifications. The program works fine when I run within Visual Basic 6, however ideally I would like to compile the program into an .exe file so I can run it from any PC. However, when I select the option to turn it into an exe, I get the following error while its ...

Relative file paths

I am trying to read in from a few files using something like this IO.foreach("TeamFields.txt") { |line| fieldNames.push(line.chomp) } It works fine when running the from the command line, but when I package to an .exe with shoes and run it can't find the file. Is there a way to specify a path relative the the .exe or do I have to prov...

How can I run another application within a panel of my C# program?

I've been reading lots on how to trigger an application from inside a C# program (Process.Start()), but I haven t been able to find any information on how to have this new application run within a panel of my C# program. For example, I'd like a button click to open a notepad.exe WITHIN my application, not externally. Thanks. ...

Delphi EXE compressor?

At one point I had a nice little compression utility that smashed my Delphi compiled EXE's to a smaller download size, but now I can't find it. Any recommendations? Also, are there any downsides to using these kinds of utilities? (I mainly use them to shorten download times for rural / dial-up users). Related question: Are there an...

How Does an HTML Form Post to an exe application?

I am just wondering how a web site posts information to an exe and how that exe grabs that information and outputs it using a template html file. The code on the web side looks something like this: <FORM ACTION="scripts/fetch.exe" METHOD=POST NAME=somename> <INPUT TYPE=TEXT NAME="id" WIDTH=30> <INPUT TYPE=SUBMIT NAME="nothing" VALUE="...

Scripting language that can produce a small, independent, Windows EXE?

I'd like to do some light data processing - a little binary data manipulation followed by conversion to text serialization. The result is written to a file, and processed by an external program (run by my program). The data processing is more than I'd care to consider doing in batch files. I'd prefer to use a scripting language, but n...

How do I programatically get the version of a dll or exe?

I need to get the product version and file version for a dll or exe using Win32 native APIs in C or C++. I'm not looking for the Windows version, but the version numbers that you see by right-clicking on a dll, selecting "Properties", then looking at the "Details" tab. This is usually a four-part dotted version number x.x.x.x. ...

How does ebook to exe application compile to self-contained executable?

I am trying to understand how various ebook applications compile their output into a self-contained executable file with no dependencies when you run the exe. How can it be done? Do they use real embedded compiler? ...

How to change an executable's properties? (Windows)

When I creat a .exe, I can right click it and go to properties->details. Then I get a list like: File Description | Type | Application File Version | Product Name | Product Version | Copyright | Size | 18.0 KB Date Modified | 6/16/2009 8:23 PM Language | How do I change these prop...

How to have arguments supplied to .exe passed on to a wrapped .bat script

I'd like to wrap a MyBatScript.bat script inside a MyTest.exe. Then I'd like to invoke MyTest.exe with arguments, thus: MyTest.exe arg1 arg2 format of passing arguments can be different if need be. I'd like arg1 and arg2 to be passed on to MyBatScript.bat as %1 and %2 and MyBatScript.bat executed. How Can I do this? Thanks! ...

lauch4j hello world program

I created a "hello world" java program and use lauch4j to convert executable jar to .exe file. When I tried to run it in cmd, but nothing printed out. I also tried to run it in launch4j. Log indicates: Executing: C:\Documents and Settings\cnbq84\Desktop\helloworld.exe. But still no "hello world" is displayed. How to display the "Hello W...

extract cab file and execute the exe file(inside the cab file) automatically

Hi! I have a cab file(w/ an executable file inside) embedded on my webpage. When the user access the page the cab file will be automatically extracted and the executable file inside should be executed as well. Is this possible? My hunch is that this will be configured in my inf file but I don't know how. I would appreciate your help in t...

Debug c++ dll in csharp

Hello, I have a .dll from c++ and i want to debug it in Csharp, but i don't know how to do. When i compiled the c++ project, Visual studio asked me to execute an ".exe" I supposed that i had to create a project to execute the dll. But i'm some lost, anyone have suggestions? ( sorry for my english, i'm french ) ...

Encryption for Executable

Can anyone recommend what's a good way to encrypt an executable? I was trying to use AxCrypt but I don't like the usage, i.e. you specify a passcode and the person who launches the exe needs to specify the passcode. Is there someway to encrypt it once and users just run the exe without specifying any passwords? ...

exe to service

I have exe file. i want run it as windows service. I am new to windows services.can anybody help me? Thanks Suneetha. ...

Can my software which I made using Java be transformed to .exe software?

Without learning new programing languages, can we using Java get .exe (executable windows file) software directly? And is there away to make .jar (Java ARchive) software transform to.exe (executable windows file)? Would this conversion effect the performance of the software? ...

Difference between .dll and .exe?

I want to know the exact difference between the dll and exe file. ...