>
> From memory you use the Trace class directly
> Trace.WriteLine("bla bla");
>
Nah, I don't think so, I'm using a "TraceSource" and all the samples I've
seen make a static one, then write to it.
public static TraceSource ts = new TraceSource("MySource");
:
ts.TraceInformation("Hello world");
*Greg*
