exe

Programming language that makes the smallest executables? [closed]

喜你入骨 提交于 2019-12-23 06:29:13
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I am looking for a programming language that generates the smallest EXE files. It also needs to have no dependencies other than the

Application doesnot launch created using MSVC2010

自作多情 提交于 2019-12-23 05:47:15
问题 I have created a exe using qt 5.0.2. Application launches if I try o launch it using qt creator. However application fail to launch which is created using MSVC 2010 pro edition. When I double click on exe it will comes out and it will not display any error or dll missing errors. Is there any way to fix/debug these kind of issues. 来源: https://stackoverflow.com/questions/17058342/application-doesnot-launch-created-using-msvc2010

Fast way to update text in a Jar file

本秂侑毒 提交于 2019-12-23 05:39:11
问题 I have a c++ executable with a Jar file embedded as a resource. The Jar contains a plaintext file within. I need to update a single line of unique text in the plaintext file with another line of the same length. I think the best solution would be to simply open the Exe with a RandomAccessFile and overwrite the text, however, when I open the Exe or the Jar in a hex editor, I cannot find the unique text. My guess is that the text is encoded somehow. In short: How can I change text from a

hiding highscore text file in exe using py2exe/pygame2exe

ぃ、小莉子 提交于 2019-12-23 05:08:14
问题 I have a highscore system in my game that I made in Pygame , it saves name and score in text files name.txt and score.txt but the problem is that anyone can edit that text files.So could i hide them in exe file. python version 2.7 setup script: pygame2exe And if it's possible could I do it without extra modules. UPDATE:I'll obviously need to encrypt text somehow.Can you suggest some simple encryption alghoritham? Note that I use numbers and newlines . I would still want to put file in exe.

making .exe file for java project containing sqlite

眉间皱痕 提交于 2019-12-23 03:56:11
问题 I want to create .exe file for my java project and give it to my friend. I wrote my project in eclipse and it uses sqlite. I don't know how to make a .exe file that can be run in other PCs. Can any one help? P.S:I saw this link but it is not useful for me! Create .jar of an eclipse project that uses Sqlite DB 回答1: .exe is a creature of Windows. To run a Java program, you typically: Create a .jar file (the "native" Java library format) Write a DOS/Windows .bat file (or, equivalently, Linux

Python app which reads and writes into its current working directory as a .app/exe

我们两清 提交于 2019-12-22 16:29:13
问题 I have a python script which reads a text file in it's current working directory called "data.txt" then converts the data inside of it into a json format for another separate program to handle. The problem i'm having is that i'm not sure how to read the .txt file (and write a new one) which is in the same directory as the .app when the python script is all bundled up. The current method i'm using doesn't work because of something to do with it using the fact that it's ran from the terminal

Is it possible to compile C++ code to .exe on a Mac? [closed]

落爺英雄遲暮 提交于 2019-12-22 10:52:53
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I bought a pre-owned Macbook a little while ago and I've been coding inside Sublime Text 2 and compiling in Terminal with g++*. I wrote a stupid text adventure that I'd like to send to a friend and if possible, I

Create Batch file for iexpress

我是研究僧i 提交于 2019-12-22 09:22:31
问题 I am trying to use iexpress to run my batch file which will execute the 2 exe & 1 msi files for me. when i try to do it manually, it works. following is the code in my batch file. Start /wait %CD%\1.exe /q Start /wait %CD%\2.exe /q msiexec.exe /i "%CD%\3.msi" but this doesn't seem to be working when i create an exe file from iexpress. Reference Above mentioned article has some code(to copy files to temp folder) & but i am not able to understand the syntax. MKDIR %Tmp%\<UNIQUE PRODUCT NAME>

How can I share my SFML game with others without errors?

烂漫一生 提交于 2019-12-22 08:19:25
问题 So, I finished a game in C ++ / SFML and I would like to send it to someone but when I send it there are errors: I tested the exe on another computer with SFML DLLs required and it shows me that libstdc ++ - 6.dll is missing, so I added it and I tried again and it tells me that there are still other dll missing, it is very embarrassing. How can I share my game without all those errors and missing DLLs? 回答1: You could use Dependency Walker (depends.exe) to find all the dll-s your application

I want to make this prolog file a stand-alone EXE file

不羁岁月 提交于 2019-12-22 06:45:17
问题 I am new to prolog and I have written this code but I want to make this prolog file a stand-alone EXE file and I dont know how to go about it. I am using swi-prolog to consult the file. I need step by step tutorial on making this program executable using swi-prolog.I saved it as 'computer.pl' here is the code below. main :- identify. identify :- write('Welcome to Micro-Computer troubleshooting'), nl, write('Please do not forget to type all your answers with a period(.) in the end'), nl,