Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/20/11 13:54:57 (12 years ago)
Author:
spimming
Message:

#1680:

  • merged changes from trunk into branch

' removed pre-build event for multiple app.configs

Location:
branches/HeuristicLab.Hive.Azure
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive.Azure

  • branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.Administrator/3.3/Views/ScheduleView.cs

    r6976 r7215  
    192192          DeleteAppointment();
    193193        else {
    194           DialogResult res = MessageBox.Show("Delete all events in this series?", "Delete recurrences", MessageBoxButtons.YesNo);
     194          DialogResult res = MessageBox.Show("Delete all events in this series?", "Delete recurrences", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
    195195          if (res != DialogResult.Yes)
    196196            DeleteAppointment();
     
    243243
    244244    private void dvOnline_OnSelectionChanged(object sender, EventArgs e) {
    245       //btCreate.Enabled = true;
    246245      if (dvOnline.Selection == SelectionType.DateRange) {
    247246        dtpFrom.Text = dvOnline.SelectionStart.ToShortDateString();
     
    249248        txttimeFrom.Text = dvOnline.SelectionStart.ToShortTimeString();
    250249        txttimeTo.Text = dvOnline.SelectionEnd.ToShortTimeString();
    251 
    252         btCreate.Text = "Save";
     250        btCreate.Text = "Create Appointment";
    253251      }
    254252
    255253      if (dvOnline.Selection == SelectionType.Appointment) {
    256 
    257254        dtpFrom.Text = dvOnline.SelectedAppointment.StartDate.ToShortDateString();
    258255        dtpTo.Text = dvOnline.SelectedAppointment.EndDate.ToShortDateString();
     
    261258
    262259        if (dvOnline.SelectedAppointment.Recurring)
    263           //btCreate.Enabled = false;
    264260          //also change the caption of the save button
    265261          btCreate.Text = "Save changes";
    266262      }
    267 
    268263      if (dvOnline.Selection == SelectionType.None) {
    269264        //also change the caption of the save button
    270         btCreate.Text = "Save";
     265        btCreate.Text = "Create Appointment";
    271266      }
    272267    }
     
    287282          //change recurring appointment
    288283          //check, if only selected appointment has to change or whole recurrence
    289           DialogResult res = MessageBox.Show("Change all events in this series?", "Change recurrences", MessageBoxButtons.YesNo);
     284          DialogResult res = MessageBox.Show("Change all events in this series?", "Change recurrences", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
    290285          if (res != DialogResult.Yes) {
    291286            if (CreateAppointment())
Note: See TracChangeset for help on using the changeset viewer.