exe

Is there any way to put an .exe application on an iPhone or blackberry

I am working for Bentley leathers and I we have a password calculator (.exe) and I am wondering if I could put it on my iPhone or the compagny BlackBerry so that way it would be easier then to have a ton of paper with me. ...

SHA1 form .exe file in C#

Hi! I hope that someone could help me with reading exe files in C# and create a SHA1 hash from it. I have tried to read from executable file using StreamReader and BinaryReader. Then using built-in SHA1 algorithm I tried to create a hash but without success. The algorithm results for StreamReader was "AEUj+Ppo5QdHoeboidah3P65N3s=" and f...

What build param(s) to use so VS 2010 can gen .obj & link .objs but NOT create an .exe?

Question title pretty much asks it all. I know I could set the project to be a .lib build and have it fail to build/link a .lib .... and the .objs tend to be in the appropriate config dir That seems like a shi*-a** backdoor way to get VS to gen objs Is there a flag/param I can set somewhere in the property sheet properties/options for ...

bind 2 exe into one

Possible Duplicate: Merge two exe files into one programmatically Hello, i want to bind two exe files into one exe file, and when executed it should only create 1 process. For example to bind windows calc.exe and notepad.exe to binded.exe and when executed it should just see binded.exe in process list and both calc.exe and n...

How to compile code generated by a Java or C++ App

I've been learning compiler theory and assembly and have managed to create a compiler that generates x86 assembly code. How can I take this assembly code and turn it into a .exe? Is there some magical API or tool I have to interact with? Or is it simpler than I think? I'm not really sure what's in a .exe, or how much abstraction lies b...

Packaging an exe to have one file, similar to on mac with .app

Hello, I am trying to create a standalone app with a resources folder that is writable. I would like to include this in the exe, similar as to how it is done on OSX with an .app. Is this possible? Thanks! ...

How to bundle an Access database with a Java application

Hi recently I had created a Java application included database with Microsoft Access. I had wrapped it to jar file using eclipse. I pass the jar file to my friend to try to use it. But my friend told me that that is no database connection. How can i include the microsoft access in the jar file. Which mean when my friend double click the ...

Example program with some simple functions in C++

I am new to C++ and I would like to know how can I do a simple program where some functions are available. For example: mypg.exe function1 string1 mypg.exe function1 textfile1 Takes the text from the str/file and shows or prints. And then: mypg.exe function2 string1 mypg.exe function2 textfile1 Uses the text for a different thing...

How to create an exe file in java

Hi I want to create an exe file for my java app. I tried with some third party softwares JEXECreator, successfully created the exe file and its working fine in my system, when I tried with another machine, it’s not working. I got the following error * The error occurred while running the application. The exit code is 0x10000223. ...

C# app requirements (besides .NET)

What exactly is needed for someone to use my C# windows application in executable form? I do know that .NET framework has to be installed on the computer, but I heard there is much more. And is there any way to spread the application besides doing installable form via "Publish"? I mean, which project files are needed? Only exe file, or t...

AIR 2.0 NativeProcess is not supported problem.

Hi, I'm Fran. I have built a application that use a nativeProcess to open exe. The application into Flex Builder 3 run whitout errors. Then the problem come when I export the aplicaction AIR in .air and install the applicaction in the developer pc or other pc. When I push the button to open the .exe, appear the message "Native Proces...

How can we check that a binary EXE (PE) is COM Exe or Win32 Exe?

I need to check programatically whether a given EXE binary is a COM EXE or Win32 EXE. Is there any way to do this? Is the Import Table an answer to this? If somehow I can determine this from the registry, where in the registry should I look to find out if a binary is regsitered for COM? (This is specific to EXEs, as DLLs are not a proble...

Problem creating an exe from C

Hello. I've made a small application in C with Netbeans. I've ran the application in Netbeans and it created an exe. I used that exe and it worked fine on my comp but when I move it to other comp it says: "This application failed to start because cygwin1.dll was not found. Re-installing the application may fix this problem." How can i c...

EXE generated in obj\Debug folder

I have inherited a Windows Forms application and I have found that a .EXE file gets generated into the obj\Debug folder everytime I compile. I am more a Web Forms kind of developer so I am a little confused as to what is happening here. Why is it a .EXE and not a .DLL? What does this file actually represent? Is this the default behaviou...

WEBpages to EXE

Hello friends, i have 1) couple of HTML files in which javascript is embeded..... My Requirements 1) I want my whole website to be in exe format so that i can protect my javascript code. 2) or tell me how to open website inside the vb6 program ...so that i can build a exe. And yeah i want the webpages to use the Internet Explorer b...

Compiling into executable file

I am currently writing a programming language in C/C++ as an exercise (but mostly for fun). At the moment it compiles into a list of commands that are then executed (kind of like a low-level API). Its working fantastically, however, I think it would be more exciting if instead of having a interpreter executable, having the language act...

How can i open binary files (exe) in "Delphi" , like Visual basic ?!

Hi , in visual basic i can open a binary(exe) file with below way : Strx$ = Space(FileLen(FileName)) Open FileName For Binary As #1 Get #1, , Strx$ Close in this way i can read all of binary file characters and read file content like this format : and the question is how can i open a binary(exe) file in delphi with a string format...

Visual studio deploy application custom action

;Hello I am trying the deploy an application with visual studio and I have a problem with custom actions. I would like to launch a .exe during the installation, and it does not work. I have addded the .exe to the MSI and in the custom action view, I added the file .. pretty simple. I cant see how it cannot work. I tried to do the same wi...

timer application for cyber cafe.How to lock window after 1 hr session?

I am creating one application for a cyber cafe.I just have to create one exe file that I'll run on each system of cafe.Requirement is a small timer window, a customer can only be able to surf internet when he/she clicks start timer button.one timer session is set for 1 hr.when 1 hr is over it will lock the window and again customer will...

running exe on apache EC2 cloud

Hi, I am trying to run an .exe file deployed by matlab (windows based) from a php website (basic LAMP installed) hosted on an basic Fedora EC2 instance (amazon's cloud) , when the idea is to upload files, process them on the server and return a download link. I've tried backticks (`), to work directly with the shell but I get a "permi...