Does anybody know, is there any way (default or third-party) to start batch file which is opened in Delphi IDE editor, by keypress or button?
I mean simply press, say, F9, and get cmd.exe window with my batch file, from editor, runnning in this window.
In some older Delphi version, might be Delphi 5, batch files could be created as projects, so there it was really F9. However, in Delphi XE I see no such project "type".
C:\Windows\SYSTEM32\CMD.EXE $PROJECTFILENAME– iMan Biglari Sep 30 '12 at 11:26C:\Windows\SYSTEM32\CMD.EXEI put more general$(ComSpec), and parameters there are specified in different edit field, plus they are a bit different -/c$EDNAME $SAVE, where$EDIT- expanded file name of topmost editor file, and$SAVEtells IDE to save that file before running tool. In any case, thanks for the answer. – Sergiy Kheylyk Sep 30 '12 at 13:28