1. TRACE amendment
- Posted by alan <fizzpop at ICON.CO.ZA> Jan 15, 2001
- 388 views
------=_NextPart_000_000A_01C07ECD.D1FBA7E0 charset="iso-8859-1" Hi fellow Euphorians, I'm leaving lurk mode for a minite, to ask if this feature is already in = place: TRACE(3) -- Trace, excluding included files, in color TRACE(4) -- Trace, excluding included files, in mono Turning trace off before any win32lib call, and on again immediately = after, adds an extra 2 lines of source per win32lib call - rather tedious! Cannot say i've seen this, or similar in the docs with euphoria, or = win32lib. I am thinking it should be a Euphoria feature, rather than a switch = incorporated into win32lib, since this is not the only included file I would like to = exclude from tracing, at times. =20 Of course, the bugs I find are my own, not win32lib ;))=20 Thanks to Judith, David et al for all thier hard work on win32lib, I am = sure I can speak for most other (240+) lurkers out there that we are not = ungrateful. Regards Alan ------=_NextPart_000_000A_01C07ECD.D1FBA7E0 charset="iso-8859-1" <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN"> <HTML> <HEAD> <META content=3Dtext/html;charset=3Diso-8859-1 = http-equiv=3DContent-Type> <META content=3D'"MSHTML 4.72.3110.7"' name=3DGENERATOR> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT color=3D#000000 size=3D2>Hi fellow Euphorians,</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>I'm leaving lurk mode for a minite, = to ask if=20 this feature is already in place:</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV> <DIV><FONT color=3D#000000 size=3D2>TRACE(3) -- Trace, excluding = included files, in=20 color</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>TRACE(4) -- Trace, excluding = included files, in=20 mono</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV> <DIV><FONT color=3D#000000 size=3D2>Turning trace off before any = win32lib call, and=20 on again immediately after,</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>adds an extra 2 lines of source per = win32lib=20 call - rather tedious!</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2></FONT><FONT size=3D2>Cannot say = i've seen this,=20 or similar in the docs with euphoria, or win32lib.</FONT></DIV> <DIV><FONT size=3D2>I am thinking it should be a Euphoria feature, = rather than a=20 switch incorporated</FONT></DIV> <DIV><FONT size=3D2>into win32lib, since this is not the only included = file I=20 would like to exclude from</FONT></DIV> <DIV><FONT size=3D2>tracing, at times.</FONT></DIV> <DIV><FONT size=3D2> </FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>Of course, the bugs I find are my = own, not=20 win32lib ;)) </FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>Thanks to Judith, David et al for = all thier hard=20 work on win32lib, I am sure I can</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>speak for most other (240+) lurkers = out there=20 that we are not ungrateful.</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV> <DIV><FONT color=3D#000000 size=3D2>Regards</FONT></DIV> <DIV><FONT color=3D#000000 size=3D2>Alan</FONT></DIV> ------=_NextPart_000_000A_01C07ECD.D1FBA7E0--
2. Re: TRACE amendment
- Posted by Brian Broker <bkb at CNW.COM> Jan 15, 2001
- 421 views
On Mon, 15 Jan 2001 08:33:22 +0200, alan wrote: >Hi fellow Euphorians, >I'm leaving lurk mode for a minite, to ask if this feature is already in >place: > >TRACE(3) -- Trace, excluding included files, in color >TRACE(4) -- Trace, excluding included files, in mono > >Turning trace off before any win32lib call, and on again immediately after, >adds an extra 2 lines of source per win32lib call - rather tedious! >Cannot say i've seen this, or similar in the docs with euphoria, or >win32lib. >I am thinking it should be a Euphoria feature, rather than a switch >incorporated >into win32lib, since this is not the only included file I would like to >exclude from >tracing, at times. Alan, If you don't want to trace an included file, just make sure that your "with trace" statement comes *after* your "include filename.e". You should also be sure that your include file does *not* contain a "with trace" statement. (I see that latest release of Win32Lib starts with a "without trace" but further on down has a "with trace". I'm not sure what the reasoning is here but you would have to comment out the "with trace" in line 11 if you don't want win32lib.ew traced.) -- Brian