Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hiding compile output

Status
Not open for further replies.

rickesilaw

Programmer
Joined
Jun 24, 2002
Messages
154
Location
CA
We have a program where we build code in a class while running a form and then compile the code. How can we stop the output from the compile from displaying over the form?
 
SET TALK OFF

SET CONSOLE OFF

One of the two should do it.


Dave S.
[cheers]
 
That didn;t work - put set talk off and set console before the compile statement - still get "garbage".
 
rickesilaw,

ACTIVATE SCREEN
** Compile....

Andy

 
rickesilaw

Sounds like a setting is stuck, try deleting your FoxUser.dbf table, and see if it make a difference.

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
I had a similar problem and SET ECHO OFF did take care of it.
good luck
 
rickesilaw

I'm not sure with all these suggestions you have solve your problem, but here is something else you can try, divert the output to an off-screen window:
Code:
DEFINE WINDOW dummy FROM 0,0 TO 1,1
MOVE WINDOW dummy TO -1,-1
SET TALK WINDOW dummy
SET TALK ON
&& Compile your code here
SET TALK OFF
RELEASE WINDOW dummy


Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top