Notepad programing

albo1000

New Member
i want to write some code in notepad, i want the file to be an .exe that lets me open up another file. how do i do that?
 

Trizoy

VIP Member
Well you can make a batch file. When you click on it, it would open any file which is specified in the programming.

To make a batch file. Right Click your desktop>new>Text file (or anything)

When the file is created change it from the filename test.txt to test.bat

This is not a batch file.

To edit or create the programming of the file, right click the bat file and click edit.

To call or start a certain file place the bacth file in the same folder, and put this in the programming.

start test.txt


[To start it minimized]
start /m test.txt

That will allow the text file names test to open. Creat a shortcut from the bat file to your desktop, for easy access...


need more info?
 
Last edited:
Top