Пример #1
0
        private void listAlerts_DoubleClick(object sender, EventArgs e)
        {
            if (listAlerts.SelectedIndex < 0)
            {
                MsgBox.Show(this, "Select at least one Alert.");
            }
            FormRxAlertEdit FormRAE = new FormRxAlertEdit(RxAlertList[listAlerts.SelectedIndex], RxDefCur);

            FormRAE.ShowDialog();
            FillAlerts();
        }
Пример #2
0
		private void listAlerts_DoubleClick(object sender,EventArgs e) {
			if(listAlerts.SelectedIndex<0) {
				MsgBox.Show(this,"Select at least one Alert.");
				return;
			}
			FormRxAlertEdit FormRAE=new FormRxAlertEdit(RxAlertList[listAlerts.SelectedIndex],RxDefCur);
			FormRAE.ShowDialog();
			FillAlerts();
		}