exe

Run an .exe file on apache?

橙三吉。 提交于 2019-12-11 09:55:03
问题 I'm trying to run a cgi executable file through a html form as in this code: <html> <head> <title>CGI Form</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> </head> <body> <form action="C:\WWW\cgi-bin\y.exe" method="get"> <input type="text" name="string1" /> <input type="text" name="string2" /> <input type="text" name="string3" /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> And here it is the cgi code compiled as y.exe and saved in

visual studio 2005 .exe file not running on another computer

假如想象 提交于 2019-12-11 09:49:25
问题 I have a visual studio 2005 c++ application running on a windows 7 64 bit machine.I tried to run it on another computer having windows 7 64 bit but when I copied it on to the desktop and runs the .exe file,there was no response.But I dont have the visual studio 2005 ide installed on the new machine and I am currently instaling it. Also, I googled and got lot of confusing answers. Can someone tell me what will be possible problem here? 回答1: Try installing the "Microsoft Visual C++

Protect Jar file source code with exe file (Java) [duplicate]

空扰寡人 提交于 2019-12-11 08:36:53
问题 This question already has answers here : How can I convert my Java program to an .exe file? [closed] (13 answers) Closed 4 years ago . How would I make a .JAR file open up when I make another file as .EXE ? I have tried many things, but they don't work. I want this for another way to protect my source code. Kind of like what Minecraft does. You open a .EXE , and somehow the .EXE opens up the .JAR file. Anyone have any ideas? 回答1: To convert to exe, I use JAR2EXE. However obfuscating your code

TCL_LIBRARY in cx_freeze

自古美人都是妖i 提交于 2019-12-11 07:33:09
问题 i am trying to build an exe file from my python script using the cx_freeze library. this is my code: import easygui easygui.ynbox('Shall I continue?', 'Title', ('Yes', 'No')) and this is my setup code: import cx_Freeze import sys import matplotlib base = None if sys.platform == 'win32': base = "Win32GUI" executables = [cx_Freeze.Executable("tkinterVid28.py", base=base, icon="clienticon.ico")] cx_Freeze.setup( name = "SeaofBTC-Client", options = {"build_exe": {"packages":["easygui","matplotlib

Pack a directory (merge files and directories into exe or msi)

心不动则不痛 提交于 2019-12-11 06:41:48
问题 There are a lot of tutorials that show on how to merge multiple files (not including folders). It will be nice if I could merge a directory and it's files so that when the user clicks on the exe or msi file windows extracts those files to the destination that I select (just as if I where to copy the directory that I want to merge). I want to create something similar as when creating a Setup Project in Visual studio. If I where to build this project, and execute the file that was created

Two commands successfully run manually but fail when run in shell_exec(), giving TimeOut error

情到浓时终转凉″ 提交于 2019-12-11 06:27:58
问题 I am trying to execute two dmd commands simultaneously using PHP shell_exec() . One command runs Tshark for 5 seconds. The second command runs an .exe file. Tshark is a program which captures network packs transferring over a network interface. The second program (named mtu.exe) sends network packets from my local machine to a remote machine. Thing is that when I run these commands manually , I run the first command. A moment after that, I run the second one, and all goes well and within a

Is it safe to add extra data to end of exe?

淺唱寂寞╮ 提交于 2019-12-11 06:16:49
问题 I want to add a variable length userdata to my exe. For example I don't want to change the build version everytime i hand a quick test for someone to look at. I'd like to add the git/mercurial branch info and maybe build options if i don't have build options stored/available in the exe. This way i can put the exe in a util and get data i need. Would adding extra data to the end of an exe be ok? It would be a windows C++ exe build with visual studios or gcc or it may be a .NET application 回答1:

VB6 Error While compile

蓝咒 提交于 2019-12-11 05:48:48
问题 I am trying to update a legacy application which has the IP hardcoded into the DB connect string, It errors with "Method "~" of object "~" failed" We are not sure why we are getting this error, can we get VB6 to give us more detail or can we change the IP of a DB connect in an compiled EXE. 回答1: Another check you might want to give a go is setting Option Explicit on for the entire project. This will show you the variables that have not been explicitly declared. Also you might want to

Convert Tkinter py file into EXE file

大城市里の小女人 提交于 2019-12-11 05:45:10
问题 im trying to convert my tkinter file into EXE using cx_freeze, but i got this error all the time the error translation of the hebrew part: module didnt found my setup file code is: import sys from cx_Freeze import setup, Executable import os os.environ['TCL_LIBRARY'] = "C:\\Users\\royreznik\\AppData\\Local\\Programs\\Python\\Python36-32\\tcl\\tcl8.6" os.environ['TK_LIBRARY'] = "C:\\Users\\royreznik\\AppData\\Local\\Programs\\Python\\Python36-32\\tcl\\tk8.6" build_exe_options = {"includes": [

Calling fortran90 exe program from java is not executing

点点圈 提交于 2019-12-11 05:29:14
问题 I am trying to call Fortran 90 program from java program, My Fortran program is as follows: !sum.for program Numbers_sum implicit none ! -----------------------------------------------Declare REAL :: a,b,sum ! -----------------------------------------------Input print*,"Enter first number..." read*, a print*,"Enter second number ..." read*, b ! -----------------------------------------------Compute sum = a+b ! -----------------------------------------------Output print*,"Sum =", sum end Which