private void btn_rentRentForm_Click(object sender, EventArgs e)
        {
            RentAndReturnForm rentform = new RentAndReturnForm();

            rentform.FormClosed += new FormClosedEventHandler(userForm_FormClosed);
            rentform.Show();
            this.Hide();
        }
Example #2
0
        public LoginForReturn(RentAndReturnForm rarf)
        {
            InitializeComponent();
            sd = SharingData.GetInstance();

            this.rarf = rarf;

            // 패스워드를 별로 표시
            txtBox_pw.Text         = "";
            txtBox_pw.PasswordChar = '*';
        }
 public InputNumForm(RentAndReturnForm rarf)
 {
     InitializeComponent();
     sd        = SharingData.GetInstance();
     this.rarf = rarf;
 }