Afrow UK
1st March 2003 20:51 UTC
Text in LogWindow
Is there a way so that I can disable certain bits of text in the log window, like stuff I need to silently extract/delete/rename without its text being displayed.
This is mainly because my Map-Compiler program writes its LogWindow ouput to a log file, and its stupid having eg. x:\path\to\file.txt renamed to -> x:\path\to\newfile.txt in between the compile ouput.
Thanks for help
-Stuart
deguix
1st March 2003 21:47 UTC
Use SetDetailsPrint none:
SetDetailsPrint none
Rename "x:\\path\\to\\file.txt" "x:\\path\\to\\newfile.txt"
># Put things that you don't want to be displayed in log window here!
>SetDetailsPrint both
>
If you don't use SetDetailsPrint both after all, will not show the "Completed" text.
Joel
1st March 2003 21:48 UTC
Yes, use
DetailsPrint "Do you see something?"
SetDetailsPrint "None" ;Hide me
File "boo.txt"
SetDetailsPrint "Both" ;Show me
DetailsPrint "No, didn't ya."
Afrow UK
1st March 2003 23:32 UTC
Heh thanx :)
-Stuart