answersLogoWhite

0


Best Answer

to save the output in a file and display the same ion the VDU

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How save output of exe file into text file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Do i save or run the technic pack luancher for minecraft?

Save it and run the exe file.


How you can save an Excel file as an .exe file?

You can change the name of any file to .exe But this will cause it to not function and the data within may be corrupted and not retrievable when you change the name back


How can you play a game maker game without game maker?

Save it as a .exe file. (To do that go to the file menu and click save as executable)


What does a file extension tell you?

The file extension tells about the type of file, with the extension three letters. For Eg:- *.txt -- text file *.exe-- executable file


How do you make a game in notepad?

if you know how to code read this, just save your prgram as a .exe file.


How do you convert a exe file to a txt file?

You can't convert an exe file to a txt file.


How can I change lnk files back to exe format?

I'm not sure what you mean... .lnk is type of file which directs to a .exe file. If you do not have .exe file still have .lnk file you can't start the program. If you have .exe file but you do not have .lnk file pointing to it you still can run the program but you will have to locate the .exe file manually.


What are the file created after c file is save?

Having saved the source file (*.C), you can compile it into an object module (*.OBJ), then link an executable program (*.EXE)


How can you convert a exe file to prg file?

i have one exe of foxpro base, now i have't it prg file so how to recover exe to prg files in use in this exe


What is the file extension to install software?

Usually a .exe file, meaning that file is a program.


What is the extansion of VBNET?

If you save your VB.NET project, it will be a .vb file. You can also build your program, then it becomes an executable (.exe)


How do you create an auto executable file?

whenever the program is compiled by the compiler,a .exe file is formed.here u can find the out put.but a .dll file is formed when a application logic is build to form a component,which can b a part of a .exe file.i mean to say .dll can't produce a out put,but can b used by a application,and after compilation form a .exe file. == A linkage editor will do the trick (often integrated with the compiler). How to create an EXE file If you want to launch Gentee programs as exe files, then use the ge2exe program. It allows to create an .exe file from a source file (.g file) or a compiled bytecode (.ge file). Such .exe file is executed without any extra modules. It can be useful, when you wish to use the program on other computers. GE files are created when compiling programs in Gentee. ge2exe.exe [switches] <source file> [output file] switches - options. You can specify the following options: -e - launch the .exe file after creation. -d - do not include gentee.dll to the created .exe file. In this case, for launching the program gentee.dll is required. This option may be useful if you have several programs in one directory. -w - wait for keystroke after the .exe file is created. -i - link .ico file. It must be the next argument. -i "c:\data\myicon.ico" -r - link .res file. It must be the next argument. -r "c:\data\myres.res" -c - make a console application. Default for .g and .ge files. -g - make a gui application. Default for .gw and .gwe files. source file is a required parameter, and should point the name of the file with bytecode or source code. The following extensions are supported: .G, .GW, .GE, .GWE . output file is an accessory parameter, in which you can point a name for the created .exe file. By default, if this parameter is not specified, the executable will have the same name as the source file, but with extension exe. ge2exe.exe -r myapp.ge ge2exe.exe myapp.ge c:\output\app.exe