Output Window

BlitzMax Forums/BlitzMax Beginners Area/Output Window

Hi, does anyone know of way to clear the output window during run time? I'm outputting a lot of text to it for debugging and its causing BM to just shutdown after a certain amount of time!
Thanks

If you're generating enough data to crash BM, you may want to try dumping into a logfile instead of printing it to the output window...

consider writing to a file instead, I think its a limitation of the win32 gadget thats holding the text in the output window

ok thanks guys, will do