How to add target of Nlog to a specific textbox control, so the log messages will be shown in that c

Posted by Sachin on Stack Overflow See other posts from Stack Overflow or by Sachin
Published on 2010-05-17T10:56:28Z Indexed on 2010/05/17 11:01 UTC
Read the original article Hit count: 282

Filed under:
|
|

I have used following config of NLog to add the log text to control of specified Name on specified form.

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
  <targets> 
    <target name="control" xsi:type="FormControl" append="true" 
            controlName="textBox1" formName="Form1"/> 
  </targets> 
  <rules> 
    <logger name="*" minlevel="Debug" writeTo="control"/> 
  </rules> 
</nlog> 

I have a form with name Form1 and control on it with the name textBox1. Still nLog cretes a new form in runtime and adds a docked textbox to it and shows the logs in it.

Now how to make nLogwrite the logs to MY form and MY Control

© Stack Overflow or respective owner

Related posts about nlog

Related posts about configuration