exe

JavaFX 8 - How to build EXE with Maven & INNO

隐身守侯 提交于 2019-12-03 00:29:58
I have not been able to successfully find a working solution on how to configure Maven to build an EXE from JavaFX with Maven. Projects set up with E(fx)clipse using the build.fxbuild work great, however I would prefer to have a maven project, with dependent modules rather the basic ANT builds. I have seen some comments on ZENJAVA - but it appears that plug in has lost all traction and is pretty much dead. Is there anything out there that can bundle an EXE from Maven? My project is an enterprise project which will have several projects, and lots of dependencies - so I was hoping for a simple,

Error loading database on Lyrix.exe (Delphi 7 legacy application) on Windows 10

夙愿已清 提交于 2019-12-02 23:51:38
问题 There is this application called Lyrix written in Delphi 7 (it seems) for which I only have the executable folder (and installer which doesn't run anymore). I can't get it to run on Windows 10, but it seems to run fine on Windows XP, 7 and 8.1. It says, Error connecting to the LyriX database. LyriX will now terminate. I tried contacting the creator of the app, but seem to have no luck, it hasn't been updated in years. 回答1: Short version Change the Locale to use "." as a decimal seperator

Convert .py to .exe [duplicate]

一个人想着一个人 提交于 2019-12-02 21:42:38
问题 This question already has answers here : How can I convert a .py to .exe for Python? (6 answers) Closed last month . How to convert python Python1.py created in Visual Studio 2015 to Python1.exe, with PyInstaller I gut error, so need to find some other tool to convert my PythonConsole.py to PythonConsole.exe 回答1: You don't have module named pefile install the module pip install pefile then try again 回答2: Import errors can be raised if that package is already installed. check whether that

How do I add a file to a exe

大兔子大兔子 提交于 2019-12-02 19:52:42
问题 I have a program that plays a sound but if I run it on a different computer it says that the file isn't found how do I attach the file onto the exe so when someone plays the exe it will still be able to play? 回答1: When Packaging your project files create a folder inside your project folder to hold your content data (text - pictures - videos - sound .. etc) and then supply your code with the relative path of your target file rather than the absolute path . for example : instead of string path

Set EXE VersionInfo

走远了吗. 提交于 2019-12-02 19:48:09
The information on the version Exe-file I receive by means of VerQueryValue . Is there an inverse function (WinApi or Delphi) which can register (establish or change) such information? Here, for example, there is a program which is able to do so. How may it work ( http://www.angusj.com/resourcehacker )? opc0de The version information is stored via resources; to edit that you simply need to edit that resource. Here is a unit I found that can clone an existing file version information and attach it to another file. It's very easy to do what you want starting from this code (it's coded by a

Disassembling file that contain big data or is compressed [closed]

牧云@^-^@ 提交于 2019-12-02 19:14:54
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 6 years ago . this is fourth day I am trying to figure out how to break down an exe. Still having no luck, file is giving debugger error right after it is runned. I am

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

你说的曾经没有我的故事 提交于 2019-12-02 18:41:51
问题 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 this. 回答1: You need to use the hook&run values, like in this sample [version] signature="$CHICAGO$" AdvancedINF=2.0 [Add.Code] time.ocx=time.ocx msvcrt.dll=msvcrt

手把手教你如何把java代码,打包成jar文件以及转换为exe可执行文件

百般思念 提交于 2019-12-02 18:25:08
1、背景: 学习java时,教材中关于如题问题,只有一小节说明,而且要自己写麻烦的配置文件,最终结果却只能转换为jar文件。实在是心有不爽。此篇博客教你如何方便快捷地把java代码,打包成jar文件以及转换为exe可执行文件 2、前言: 我们都知道Java可以将二进制程序打包成可执行jar文件,双击这个jar和双击exe效果是一样一样的,但感觉还是不同。其实将java程序打包成exe也需要这个可执行jar文件。 3、准备: eclipse或Myeclipse以及exe4j(网上有软件和帐号下载) 4、具体步骤: Step1:将java项目打包成可执行jar文件 首先看一下我的java project结构,Main.java是程序入口类,里面有main函数,config目录是些配置文件,lib是用到的第三方类库 开始打包,Simulate(Java项目)-鼠标右键-Export 弹出窗口,选择“JAR file”,点击“Next” 取消勾选“config”和“lib”目录,以及eclipse生成的项目配置文件“.classpath”和“.project”,点击“Next” 一切默认,点击“Next” 在弹出窗口中,选择我们自己创建的MANIFEST.MF文件,点击“Finish” 我的MANIFEST.MF文件内容为: Manifest-Version: 1.0Main-Class:

JavaFX .exe file Failed due to exception in main class

纵饮孤独 提交于 2019-12-02 17:38:31
问题 I developed an JavaFX application and used the native packaging tool (incl. Inno Setup 5 and WiX) to create .exe files and installers. The program is a self-containing application, means it has its own JRE on board and some external .jars in a /lib folder. When I install and execute it it runs fine on my own computer (Windows 7) and some other machines but it seems not to run on Windows 10 and Windows Server 2008 R2. Also some Windows 7 machines cannot execute it. The error message after

How to write and executable Windows .exe manually (machine code with Hex editor)?

心已入冬 提交于 2019-12-02 15:08:54
I'd like to know how is it possible to write something as simple as an Hello World program just by using an Hex Editor. I know that I could use an assembler and assembly language to this at a near machine level but I just want to experiment with really writing machine code in a toy example such as Hello World. This could be a simple DOS .COM file that I can run on DOSBox. But it would be nice if someone could provide an example for an .EXE file for running it directly on my Windows PC. This is just pure curiosity. No... I'm not thinking of writing programs directly in binary machine code (I