Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Text Previewer (windows only)
#6
SHELL is broken.  Sad

Try these three examples:

Code: (Select All)
$Console:Only

F = FreeFile
Open "temp.txt" For Output As #F: Close F
Shell _Hide "reg query " + Chr$(34) + "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" + Chr$(34) + " /s > temp.txt"
Open "temp.txt" For Input As #1
For i = 1 To 10
    Line Input #1, temp$
    Print temp$
Next
Close

Code: (Select All)
$Console:Only

F = FreeFile
Open "temp.txt" For Output As #F: Close F
Shell "reg query " + Chr$(34) + "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" + Chr$(34) + " /s > temp.txt"
Open "temp.txt" For Input As #1
For i = 1 To 10
    Line Input #1, temp$
    Print temp$
Next
Close

Code: (Select All)
F = FreeFile
Open "temp.txt" For Output As #F: Close F
Shell "reg query " + Chr$(34) + "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" + Chr$(34) + " /s > temp.txt"
Open "temp.txt" For Input As #1
For i = 1 To 10
    Line Input #1, temp$
    Print temp$
Next
Close

$CONSOLE:ONLY and SHELL works.
$CONSOLE:ONLY and SHELL HIDE doesn't work.
SHELL withotu $CONSOLE:ONLY doesn't work.

/SIGH
Reply


Messages In This Thread
Text Previewer (windows only) - by SMcNeill - 03-17-2024, 06:46 PM
RE: Text Previewer (windows only) - by a740g - 03-17-2024, 06:56 PM
RE: Text Previewer (windows only) - by SMcNeill - 03-17-2024, 07:00 PM
RE: Text Previewer (windows only) - by a740g - 03-17-2024, 07:05 PM
RE: Text Previewer (windows only) - by bplus - 03-17-2024, 07:14 PM
RE: Text Previewer (windows only) - by SMcNeill - 03-17-2024, 07:16 PM
RE: Text Previewer (windows only) - by mdijkens - 03-25-2024, 12:52 PM
RE: Text Previewer (windows only) - by SMcNeill - 03-17-2024, 07:46 PM
RE: Text Previewer (windows only) - by SMcNeill - 03-17-2024, 11:15 PM
RE: Text Previewer (windows only) - by SMcNeill - 03-18-2024, 12:31 AM
RE: Text Previewer (windows only) - by SMcNeill - 03-18-2024, 12:38 AM
RE: Text Previewer (windows only) - by SMcNeill - 03-18-2024, 12:34 PM
RE: Text Previewer (windows only) - by Pete - 03-25-2024, 02:47 AM
RE: Text Previewer (windows only) - by SMcNeill - 03-25-2024, 02:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  3D Text SMcNeill 13 698 02-10-2026, 08:17 AM
Last Post: Unseen Machine
  Minimal Text Animator James D Jarvis 5 1,088 09-16-2022, 07:12 PM
Last Post: James D Jarvis

Forum Jump:


Users browsing this thread: