1. stop trace ! :>)
- Posted by rubis at fem.unicamp.br Aug 26, 2002
- 401 views
Hi people; How do I keep the trace window results only in my program, and not "walking away" through the include files or win32lib ? thanks Rubens
2. Re: stop trace ! :>)
- Posted by Kat <gertie at PELL.NET> Aug 26, 2002
- 430 views
On 26 Aug 2002, at 19:11, rubis at fem.unicamp.br wrote: > > Hi people; > > > How do I keep the trace window results only in my program, and not > "walking away" through the include files or win32lib ? Put the "with trace" and "trace(1)" AFTER all the includes. Then in the includes, put "without trace". Kat
3. Re: stop trace ! :>)
- Posted by rubis at fem.unicamp.br Aug 27, 2002
- 395 views
Hi Kat, Hi Andy; You mean this: without trace include Win32lib.ew include database.e without warning with trace procedure trace(1) ... trace(0) end procedure. Didn't work. If I had in this procedure some call to the database for example, the trace window will show all the routines for the database.e Any ideas ? Rubens At 19:28 26/8/2002, you wrote: > >On 26 Aug 2002, at 19:11, rubis at fem.unicamp.br wrote: > > > > > Hi people; > > > > > > How do I keep the trace window results only in my program, and not > > "walking away" through the include files or win32lib ? > >Put the "with trace" and "trace(1)" AFTER all the includes. Then in the >includes, put "without trace". > >Kat > > >
4. Re: stop trace ! :>)
- Posted by Kat <gertie at PELL.NET> Aug 27, 2002
- 418 views
On 27 Aug 2002, at 10:52, rubis at fem.unicamp.br wrote: > > Hi Kat, Hi Andy; > > You mean this: > > > without trace > include Win32lib.ew > include database.e > without warning > with trace > > procedure > trace(1) > ... > trace(0) > end procedure. > > Didn't work. If I had in this procedure some call to the database for > example, the trace window will show all the routines for the database.e > > Any ideas ? 1) When you get to a line in the trace window, a line that makes a database call, press <down-arrow>, not <enter>. 2) open the database code, (database.e) and put in it "without trace", at the top. Kat