private void UpdateTimerCTRL_Tick(object sender, EventArgs e)
{
try
{
ServerStateLB.Text = m_server.CurrentInstance.CurrentState.ToString();
ServerTimeLB.Text = String.Format("{0:HH:mm:ss}", DateTime.Now);
UpdateSessions();
UpdateSubscriptions();
}
catch (Exception)
{
// MessageBox.Show(exception.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
#endregion