Exemple #1
0
        public void ShowAcceptingFormReadOnly()
        {
            FormAccepting form = new FormAccepting();

            form.Database = database;
            form.SetReadOnly();
            AddChild(form);
        }
Exemple #2
0
        private void MoveTrackToOtherPoint(Appoint appoint)
        {
            FormRepointAppoint form = new FormRepointAppoint(database, appoint, Point);

            if (form.ShowDialog(FindForm().MdiParent) == DialogResult.OK)
            {
                FormAccepting parentForm = (FormAccepting)this.FindForm();
                parentForm.RefreshData();
            }
        }