private void btn_acc_yearsearch_Click(object sender, EventArgs e) { Class_AccountBook c = new Class_AccountBook(this); panel8.Controls.Clear(); c.Dinamic_Create(); }
private void btn_acc_searchmon_Click(object sender, EventArgs e) { Class_AccountBook c = new Class_AccountBook(this); c.cboitems_add(); pnl_acc_searchmon.Visible = true; panel8.Visible = true; }
private void cbo_acc_how_SelectedIndexChanged(object sender, EventArgs e) { ComboBox combo = (ComboBox)sender; if (combo.SelectedItem.ToString() == "카드") { cbo_account_acclist.Enabled = true; Class_AccountBook c = new Class_AccountBook(this); c.Card_Select(); } else { cbo_account_acclist.Enabled = false; } }
private void btn_acc_outmoney_Click_1(object sender, EventArgs e) { Button btn = (Button)sender; Class_AccountBook c = new Class_AccountBook(this); if (btn == btn_acc_outmoney) { c.File_Save("지출"); } else if (btn == btn_acc_inmoney) { c.File_Save("입금"); } c.Monthcalendar_Sel(); }
private void cbo_account_acclist_SelectedIndexChanged(object sender, EventArgs e) { Class_AccountBook c = new Class_AccountBook(this); c.Acclist_Selected(); }
private void mcd_acc_search_DateSelected(object sender, DateRangeEventArgs e) { Class_AccountBook c = new Class_AccountBook(this); c.Monthcalendar_Sel(); }