示例#1
0
        private void butSend_Click(object sender, EventArgs e)
        {
            comboSendStatus.SelectedIndex = (int)RxSendStatus.InElectQueue;
            if (!SaveRx())
            {
                return;
            }
            FormRxSend FormRS = new FormRxSend();

            FormRS.ShowDialog();
            DialogResult = DialogResult.OK;
        }
示例#2
0
 private void butSendRx_Click(object sender,EventArgs e)
 {
     FormRxSend FormRS=new FormRxSend();
     FormRS.ShowDialog();
 }
示例#3
0
 private void butSend_Click(object sender,EventArgs e)
 {
     comboSendStatus.SelectedIndex=(int)RxSendStatus.InElectQueue;
     if(!SaveRx()){
         return;
     }
     FormRxSend FormRS=new FormRxSend();
     FormRS.ShowDialog();
     DialogResult=DialogResult.OK;
 }