Example #1
0
        private void ShowDialogForm(MyAppointment label)
        {
            AppointmentForm frm = new AppointmentForm(label);

            frm.CheckSecurityForView();
            frm.ShowDialog();
        }
Example #2
0
        private void Goto(MyAppointment label)
        {
            //Hashtable h = new Hashtable();
            //h.Add("Id", label.Id);
            //h.Add("Appointment", label);
            //NavigateTo("Appointments", h);
            AppointmentForm frm = new AppointmentForm(label);

            frm.CheckSecurityForView();
            frm.ShowDialog();
        }