RE: stop trace ! :>)
- Posted by Don Phillips <Graebel at hotmail.com> Aug 27, 2002
- 406 views
> 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 No, thats not quite what they meant. But close. ::File database.e:: without trace -- (1st line of file) ::File Win32lib.ew:: without trace -- (1st line of file) ::Your file:: include database.e include Win32lib.ew without warning with trace procedure trace(1) ... trace(0) end procedure. Note: While I believe this will give the desired results, I would make a copy of the original file and place it somewhere for safe keeping as changing the file in this manner will remove the zero count statement clause... Don Phillips