Beispiel #1
0
        private void Confirm()  // 회원 가입된 사용자 확인 함수
        {
            try
            {
                conn.Open();
                string sql = "SELECT id,pwd FROM MEMBER WHERE id='" + textbox_id.Text + "'AND pwd='" + textBox_pwd.Text + "'";

                MySqlCommand    cmd = new MySqlCommand(sql, conn);
                MySqlDataReader rdr = cmd.ExecuteReader();

                if (!rdr.Read()) // 회원 정보가 없거나 잘못 입력되었을경우 로그인 실패 false
                {
                    MessageBox.Show("존재하지 않는 회원 또는 회원 정보가 잘못 입력되었습니다.");
                }
                else
                {
                    Form_MAIN form_main = new Form_MAIN(this);
                    form_main.Show();
                    this.Hide();            //메인 스레드인 LOGIN 폼을 숨기고 메인폼을 SHOW
                } // 정보를 제대로 입력시 로그인 성공
                conn.Close();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.StackTrace);
            }
        }
Beispiel #2
0
 public MAIN_CARDNBANK(Form_MAIN temp)
 {
     InitializeComponent();
     main = temp;
     conn.Open();
     Bank_read();
     //Read("BANK"); //통장 라디오 버튼이 활성화 된 체로 시작
 }
Beispiel #3
0
 public MAIN_modify(Form_MAIN temp, ListViewItem temp_item)
 {
     main = temp;
     item = temp_item;
     InitializeComponent();
     textBox_detail.Text = temp_item.SubItems[1].Text;
     if (temp_item.SubItems[2].Text != "")
     {
         textBox_amount.Text = temp_item.SubItems[2].Text;
     }
     else
     {
         textBox_amount.Text = temp_item.SubItems[3].Text;
     }
 }
Beispiel #4
0
 public Main_ADD(Form_MAIN temp)
 {
     InitializeComponent();
     main = temp;
     conn.Open();
 }