Ejemplo n.º 1
0
 public SolveProblem(TextBox txtLog)
 {
     logTxt = new LogHandler(txtLog);
     logMsg = new LogHandler(null);
 }
Ejemplo n.º 2
0
 public SolveProblem(TextBox txtLog, TextBox msgLog)
 {
     logTxt = new LogHandler(txtLog);
     logMsg = new LogHandler(msgLog);
 }
Ejemplo n.º 3
0
 public SolveProblem()
 {
     logTxt = new LogHandler(null);
     logMsg = new LogHandler(null);
 }