Example #1
0
 private void Form1_Load(object sender, EventArgs e)
 {
     InputIpAddress inputForm = new InputIpAddress();
     inputForm.ShowDialog();
     ip = inputForm._ipaddress;                  //InputIpAddress Form에서 ip 주소를 받아온다.
     metroLabel1.Text = "IP Address : " + ip;    //라벨에 우선 뿌려준다.
 }
Example #2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            InputIpAddress inputForm = new InputIpAddress();

            inputForm.ShowDialog();
            ip = inputForm._ipaddress;                  //InputIpAddress Form에서 ip 주소를 받아온다.
            metroLabel1.Text = "IP Address : " + ip;    //라벨에 우선 뿌려준다.
        }