Console application
Console application
Hi, I have a question, when I convert a Just Basic code to an executable and I check the option "create console application", when the program writes the texts it does it one by one, and there are parts of my program that are extensive, and it is somewhat tedious to wait for everything to finish writing, is there a way to speed up this process and that everything is displayed instantly?
Learning...
Re: Console application
I don't know of any way to speed up console output, sorry. It is not particularly slow here, this program displays the text 'instantly' when run as a Console Mode executable (Windows 10):
Code: Select all
PRINT "The quick brown fox jumps over the lazy dog"
WAIT
Re: Console application
To me it is displayed like this, line by line and letter by letter
Learning...
Re: Console application
I ran this:
Code: Select all
start = time$("ms")
for i = 1 to 100
print "The quick brown fox jumps over the lazy dog"
next
finish = time$("ms")
print finish-start
wait
Try changing your console settings (right-click in the title bar, select Properties).
Re: Console application
No, other programs run fine on console, not like that. Anyway, there seems to be something wrongly configured. Thanks anyway.guest wrote: ↑Sun Feb 28, 2021 2:20 pmI ran this:
Here is the output; 186 milliseconds for 4,500 characters, that's over 24,000 characters per second:Code: Select all
start = time$("ms") for i = 1 to 100 print "The quick brown fox jumps over the lazy dog" next finish = time$("ms") print finish-start wait
console_speed.png
Try changing your console settings (right-click in the title bar, select Properties).
Learning...