示例#1
0
 private void yoteiListButton_Click(object sender, EventArgs e)
 {
     if (yoteiForm == null || yoteiForm.IsDisposed)
     {
         yoteiForm = new KensaYoteiList(this);
     }
     yoteiForm.Show();
 }
示例#2
0
        private void allButton_Click(object sender, EventArgs e)
        {
            if (memoForm == null || memoForm.IsDisposed)
            {
                memoForm = new KensaMemoList(this);
            }
            memoForm.Show();
            if (calenderForm == null || calenderForm.IsDisposed)
            {
                calenderForm = new KensaYoteiCalender();
            }
            calenderForm.Show();
            if (yoteiForm == null || yoteiForm.IsDisposed)
            {
                yoteiForm = new KensaYoteiList(this);
            }
            yoteiForm.Show();

            KensaYoteiHeijyunForm frm = new KensaYoteiHeijyunForm();
            frm.Show();
        }