Example #1
0
        private void schedule1_AppointmentRead(object sender, Janus.Windows.Schedule.AppointmentEventArgs e)
        {
            DataRowView drv = (DataRowView)e.Appointment.DataRow;

            atriumDB.AppointmentRow apptRow = (atriumDB.AppointmentRow)drv.Row;

            if (!apptRow.IsApptRecurrenceIdNull())
            {
                e.Appointment.ImageIndex1 = 3;
            }
        }
Example #2
0
        private void scheduleRezervimet_AppointmentDoubleClick(object sender, Janus.Windows.Schedule.AppointmentEventArgs e)
        {
            this.Cursor = Cursors.WaitCursor;
            frmKonfiguroRezervime frm = new frmKonfiguroRezervime();

            frm.llojiVeprimi = "Modifikim";
            frm.idRezervimi  = Convert.ToInt32(e.Appointment.Key);
            frm.ShowDialog();
            this.ShfaqRezervimetSchedule(calendar.CurrentDate);
            this.Cursor = Cursors.Default;
        }
Example #3
0
 private void schedule1_AppointmentDoubleClick(object sender, Janus.Windows.Schedule.AppointmentEventArgs e)
 {
     JumpToFile();
 }