コード例 #1
0
        private void btn_acc_yearsearch_Click(object sender, EventArgs e)
        {
            Class_AccountBook c = new Class_AccountBook(this);

            panel8.Controls.Clear();
            c.Dinamic_Create();
        }
コード例 #2
0
        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;
        }
コード例 #3
0
        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;
            }
        }
コード例 #4
0
        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();
        }
コード例 #5
0
        private void cbo_account_acclist_SelectedIndexChanged(object sender, EventArgs e)
        {
            Class_AccountBook c = new Class_AccountBook(this);

            c.Acclist_Selected();
        }
コード例 #6
0
        private void mcd_acc_search_DateSelected(object sender, DateRangeEventArgs e)
        {
            Class_AccountBook c = new Class_AccountBook(this);

            c.Monthcalendar_Sel();
        }