private void button1_Click(object sender, EventArgs e)
        {
            string id  = LoginForm.idValue;
            string str = "";

            if (sql.Query_Select_Bool("WHERE ID ='" + id + "' AND PWD = '" + textBox_pwd.Text + "'", "", 0))
            {//입력 비밀번호가 맞으면
                if (textBox_Npwd.Text != "" & textBox_Npwd2.Text != "")
                {
                    if (textBox_Npwd.Text == textBox_Npwd2.Text)
                    {
                        sql.Query_Modify("UPDATE TB_LOGIN SET PWD =" + textBox_Npwd.Text + "WHERE ID = '" + LoginForm.idValue + "'");
                        str += "비밀번호 ";
                    }
                    else
                    {
                        MessageBox.Show("일치하지 않습니다.");
                    }
                }

                string tel1 = comboBox1.SelectedItem as String;
                string tele = tel1 + "-" + textBox_tel2.Text + "-" + textBox_tel3.Text;

                sql.Query_Modify("UPDATE TB_LOGIN SET ADDRESS = '" + textBox_address.Text + "' ,TEL = '" + tele + "', NAME = '" + textBox_name.Text + "' WHERE ID = '" + LoginForm.idValue + "'");
                MessageBox.Show("수정 완료");
            }
            else
            {
                MessageBox.Show("비밀번호 일치하지 않습니다.");
            }
        }
 private void button_singUp_Click(object sender, EventArgs e)
 {
     try
     {
         string telStr = comboBox1.SelectedItem as String + "-" + textBox_tel1.Text + "-" + textBox_tel2.Text;
         if (textBox_id.Text.Trim() == "")
         {
             MessageBox.Show("빈칸이 있습니다. 다시 입력해 주세요");
         }
         else if (sql.Query_Select_Bool("WHERE ID = '" + textBox_id.Text + "'", "", 0))
         {    //중복아이디 check
             MessageBox.Show("중복된 아이디 입니다.");
         }
         else if (textBox_id.Text.Trim() == "" || textBox_pwd.Text.Trim() == "" || textBox_pwde.Text.Trim() == "" || textBox_pwde.Text.Trim() == "" || textBox_address.Text.Trim() == "" || textBox_tel1.Text.Trim() == "" || textBox_tel2.Text.Trim() == "")
         {
             MessageBox.Show("빈칸이 있습니다. 다시 입력해 주세요");
         }
         else
         {
             if (textBox_pwd.Text == textBox_pwde.Text)
             {
                 sql.Query_Modify("INSERT INTO TB_LOGIN VALUES ('" + textBox_id.Text + "','" + textBox_pwd.Text + "','" + textBox_pwde.Text + "','" +
                                  textBox_name.Text + "','" + telStr + "')");
                 MessageBox.Show(textBox_name.Text + "님 회원가입 완료 됐습니다.");
             }
             else
             {
                 MessageBox.Show("비밀번호가 일치하지 않음");
             }
         }
     }
     catch (Exception)
     {
         MessageBox.Show("알수 없는 오류");
     }
 }