11-26-2022, 11:51 PM
FROM:
https://qb64phoenix.com/qb64wiki/index.php/SHELL
(Example #2):
Maybe you would like to fix it up so it always looks for a file inside QB64 folder or wherever else you save your source code.
https://qb64phoenix.com/qb64wiki/index.php/SHELL
(Example #2):
Code: (Select All)
INPUT "Enter a file name to read in Notepad: ", filename$
SHELL "CMD /C start /max notepad " + filename$ ' display in Notepad full screen in XP or NT
'SHELL "start /min notepad /p " + filename$ ' taskbar print using QB64 CMD /C not necessary
Maybe you would like to fix it up so it always looks for a file inside QB64 folder or wherever else you save your source code.