示例#1
0
        private void NmClient_OnError(object sender, NetManager.EventMsgArgs e)
        {
            MessageBox.Show("Ошибка сервера: " + e.Msg);

            iC_ConnectStatus.Status           = 0;
            logLabel1.Text                    = (iC_ConnectStatus.StateTitle);
            подключениеToolStripMenuItem.Text = "Отключится";
        }
示例#2
0
 private void Client_Error(object sender, NetManager.EventMsgArgs e)
 {
     MessageBox.Show(e.Msg, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
 }