提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
@@ -477,4 +477,40 @@ namespace AfkDataService
// try
// {
// MySqlHelper._connection.Close();
//
// MySqlHelper._connection.Dispose();
// }
// catch (Exception)
// {
// }
// MySqlHelper._connection = null;
// }
// try
// {
// MySqlHelper._connection = new MySqlConnection(connStr);
// MySqlHelper._connection.Open();
// return true;
// }
// catch (Exception ex)
// {
// Console.WriteLine(ex.Message);
// }
// return false;
//}
#endregion
public void SendMessage(TextBox textBox, string message)
{
if (textBox.InvokeRequired)
{
textBox.Invoke(new Action(() =>
{
textBox.AppendText(message);
}));
}
else
{
textBox.AppendText(message);
}
}
#endregion
}
}
File diff suppressed because it is too large Load Diff