예제 #1
0
        public MainForm()
        {
            InitializeComponent();

            if (File.Exists(inipath))
            {
                InitPort(port);
            }
            else
            {
                PortForm portfrm = new PortForm();
                portfrm.ShowDialog();
                //MessageBox.Show("deltadvp.ini not found", "Header", MessageBoxButtons.OK, MessageBoxIcon.Error);
                //string s = Properties.Resources.TextFile.ini;
            }
        }
예제 #2
0
파일: MainForm.cs 프로젝트: 0xFE640/Delta
        public MainForm()
        {
            InitializeComponent();

            if (File.Exists(inipath) )
            {

                InitPort(port);
            }
            else
            {
                PortForm portfrm = new PortForm();
                portfrm.ShowDialog();
               //MessageBox.Show("deltadvp.ini not found", "Header", MessageBoxButtons.OK, MessageBoxIcon.Error);
                //string s = Properties.Resources.TextFile.ini;

            }
        }
예제 #3
0
        private void comPortToolStripMenuItem_Click(object sender, EventArgs e)
        {
            PortForm frm = new PortForm();

            frm.Show();
        }
예제 #4
0
파일: MainForm.cs 프로젝트: 0xFE640/Delta
 private void comPortToolStripMenuItem_Click(object sender, EventArgs e)
 {
     PortForm frm = new PortForm();
     frm.Show();
 }