Added MtErrorCode used in MtExecutionException

This commit is contained in:
DW
2016-04-25 14:00:54 +03:00
parent 3bec28f817
commit 640c680933
6 changed files with 111 additions and 4 deletions
+1
View File
@@ -275,6 +275,7 @@
this.listBoxEventLog.Name = "listBoxEventLog";
this.listBoxEventLog.Size = new System.Drawing.Size(690, 82);
this.listBoxEventLog.TabIndex = 14;
this.listBoxEventLog.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listBoxEventLog_MouseDoubleClick);
//
// tabControl1
//
+5
View File
@@ -976,5 +976,10 @@ namespace TestApiClientUI
addToLog(result);
}
}
private void listBoxEventLog_MouseDoubleClick(object sender, MouseEventArgs e)
{
listBoxEventLog.Items.Clear();
}
}
}