Posted on: 8/13/2014 2:12:21 AM | Views : 526

using System; using System.Drawing; using System.IO; using System.Runtime.InteropServices; using System.Windows.Forms; using MtlCommon; using UILogUtils; namespace LogWriter { public class AppLog { #region Member variables /// <summary> /// Cash log streamwriter /// </summary> private StreamWriter _logWriter; private StreamWriter _logWriterError; /// <summary> /// Assign Logwindow object of UILogUtils /// </summary> public LogWindow ApplogWindow; public LogBox ApplogBox; /// <summary> /// Lock for cash writer /// </summary> private readonly object _lockLog = new object(); private string _fileName = ""; #endregion #region Genrate + Close /// <summary> /// Generate Log file /// Provide dire ...

Go to the complete details ...