Beispiel #1
0
        void txt_month_NewEntryNeeded(object sender, string pValue)
        {
            if (fsmonth == null)
            {
                fsmonth = new FMonth();
            }
            Parent.Controls.Add(fsmonth);
            fsmonth.Dock = DockStyle.Fill;
            fsmonth.Show();
            fsmonth.BringToFront();
            fsmonth.Focus();

            fsmonth.SetAction(BtnEvent.New, null);
            fsmonth.SetFocus();
        }