executable

east asian language is broken when I make Executable in DrRacket(language is scheme)

hello~! I'm using DrRacket for Scheme Programming. for I'm not a person who use native English, I need to print out east asian language. there is no problem when I press run button in IDE. east asian language is printed well. but when I make an Executable file, and execute, east asian characters were broken when program prints out. ...

What is the meaning / usage of IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG?

In the Portable Executable format, there is a directory named IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG. Can someone provide a URL with a good explanation of this directory and its real usage? Why do some apps use this feature? ...

Any free debug softwares that would allow me to peek into the workings of a compiled pyexe file?

I am trying to learn more about the mechanics of executable files, but I have no background in assembler code. Is there any program I can use for this purpose? I would like to be able to pause a program in real time and read its memory dump at that instant. Is there anything like that for windows 7 32? What about for windows 7 64? Thank...

libsqlite3.dylib security error

I am having trouble with the libsqlite3.dylib library; when I try to run, I am receiving the following error message: dyld: Library not loaded: /usr/lib/libsqlite3.dylib Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security Reason: Incompatible library version: Security requires version 9.0.0 or later, ...

Custom installation file for Windows program

Hi, I need to create an installation file for Windows in such a way that the setup: Registers the .exe at startup so it launches everytime machine is booted Runs the .exe and opens a webpage upon completing installation . Could anyone please give me some tips on how I could do this? ...

How to avoid manual entering of input file, when .exe file is run from Matlab?

I am using a trans.exe file, which when run asks for a parameter (=input) file. If I run trans.exe using Matlab, then how can I directly give the parameter file inside the program without being prompted by Matlab to type it manually each time trans.exe is run? ...

Can text documents and other files get packaged into C executable

My C application relies on some files to copy over. Will the files be contained in the executable and not as stand-alone files? Would it have to be linked statically? I am using Eclipse CDT if it matters. ...

LINK : fatal error LNK1104: cannot open file 'D:\...\MyProj.exe'

Using Visual Studio 2010, when I build + run my application in short intervals I often get the following error. If I just wait a minute or two and try again it works fine. Unlocker claims no handle is locking the executable file. How can I discover what's locking it? If it's Visual Studio itself, what should I do to make it stop? or alte...

how to remove some data from pe (exe) file in C

hi, in first exe i have defined array of char with some special bytes as label, i mapping it to memory from another exe, finding needed label and putting in it new data, but this data could be shorter then defined array, so i want to cut this array to needed size! how can i do it? ...

Distribute a binary executable of a program built with OpenCV?

I created a program in C that uses OpenCV. In addition to distributing the source and make files, I would like to distribute a Win32 binary that will run when an end-user clicks on it. Presumably I would need an easy way for the user to install the OpenCV libraries. What is the best way to do this? Should I be looking into installers, ...

Host executables on GitHub?

I want to distribute executables along with my source. My source is all hosted tidily on GitHub. Is it possible to add executables and installers to my GitHub project page without adding them to my git repository? ...

Java Runtime exec() behavior

I am attempting to programmatically generate javadocs via an instance of Runtime through the exec() method by passing in the commands necessary to generate javadocs. First of all I am unfamiliar with creating javadocs via the command line and second I am unfamiliar with the exec() method from Runtime. As a test I was able to execute exec...

how the bittorent is compiled to exe

As all know bittorrent is written in python program. whenever i download and install the bittorrent.exe, I never found any file(like dll etc) associated in program files i mean whenever i go to c:\program files\bittorrent i found only single file called bittorrent.exe, i wonder how this program is compiled to exe , whereas whenever i wan...

"No such file or directory" but it exists

I simply want to run an executable from the command line, ./arm-mingw32ce-g++, but then I get the error message, bash: ./arm-mingw32ce-g++: No such file or directory I'm running Ubuntu Linux 10.10. ls -l lists -rwxr-xr-x 1 root root 433308 2010-10-16 21:32 arm-mingw32ce-g++ Using sudo (sudo ./arm-mingw32ce-g++) gives sudo: unable t...

Any script for compiling Java server like apps into crossplatform executables?

Possible Duplicate: How do I create executable Java program? Windows, mac, lin. I want to be capable of compiling my app consisting of HSQLDB (I have it as stand alone server but inside my app), Hibernate, some of my classes, Spring and BlazeDS into stand alone executables. Howtodosuch thing? ...

Java Desktop application

This is a single question, but with a couple of sub questions. I am planning a Desktop application using Java and I am using NetBeans as the IDE. Questions: Why so many Javas? Java, Java SE, Java EE, Java Me I want the application to store data locally, what is best Java DB or SQLite? Do I need anything extra to create a setup file for...

How to user Powershell 'invoke-expression' to run an executable as a different user

I have a c++ service application that launches a Powershell script (powershell.exe script.ps1). In the script an executable is run but needs to be run with different user credentials. Is there a way to do this in Powershell with the invoke-expression cmdlet or some other way? ...

executable jar file not running

Hello, I have created a runnable Jar file of quite large dimension (125,000 kb). When I run it the application inside this jar file is not shown but in the Task Manager the javaw.exe (which should be linked to this jar file) process is running. Does anyone know what the problem is and how it may be overcome? ...

Sanity of appending data to an executable binary

Is it generally sane to append some random data to an executable binary file? What measures should be taken to ensure safe operation of the resulting executable, like padding before appended data or whatever? A typical C example would be: gcc -o main.o -c main.c gcc -o main main.o -lfoo cat bar.txt >> main The target system is broadl...

Change my applications's exe file version in VB6

i made an application in vb6 now i have given it a product version from project/properties but i noticed the win explorer has two tags for exe a product version and a file version. i want to edit the file version of my app's exe any idea how can i do that? file version should be x.x.x.x ...