コード例 #1
0
ファイル: AssignForm.cs プロジェクト: AlexanderYang/Extension
 public AssignForm(SortedDictionary<string, Color> empList)
 {
     InitializeComponent();
     Args = new AssignEventArgs();
     IsAssigned = false;
     empComboBox.DataSource = new BindingSource(empList, null);
     empComboBox.DisplayMember = "Key";
     empComboBox.ValueMember = "Value";
 }
コード例 #2
0
        private void assignProject(Worksheet worksheet, AssignEventArgs assignArgs, Color color)
        {
            String projectName = assignArgs.ProjectName;
            String empAssigned = assignArgs.AssignedEmp;
            var rows = worksheet.Rows;
            //search for the assigned employee's name in the first clomun
            int i = 2;
            bool hasExisted = false;
            for (; (i < rows.Count && !hasExisted && rows[i].Cells[1].Value2 != null); i++)
            {
                Range row = rows[i];
                //get the last row of this assigned employee.
                int k = i;
                while ((rows[k].Value2 != null) && (rows[k].Cells[1].Value2 == empAssigned) && (k < rows.Count))
                {
                    hasExisted = true;
                    k++;
                }
                if (hasExisted)
                {
                    //insert a new row for the current project.
                    if (rows[k].Cells[1].Value2 != null)//copy the rest range to a row below
                    {
                        int l = k;
                        do { l++; } while (rows[l].Cells[1].Value2 != null);
                        String r = "A" + k.ToString() + ":BB" + k.ToString();
                        worksheet.Range[r].Insert(XlInsertShiftDirection.xlShiftDown);
                        worksheet.Range[r].Cells.ClearFormats();
                        //AutoFill(worksheet.Range[r], false);
                    }
                    SetRow(worksheet, k, assignArgs, color);
                    break;
                }

            }
            if (!hasExisted)
            {
                //add the new emp in the last row
                SetRow(worksheet, i, assignArgs, color);
            }
        }
コード例 #3
0
 private static void SetRow(Worksheet sheet, int index, AssignEventArgs assignArgs, Color color)
 {
     sheet.Cells[index, 1] = assignArgs.AssignedEmp;
     System.Globalization.CultureInfo ci = System.Threading.Thread.CurrentThread.CurrentCulture;
     var rule = CalendarWeekRule.FirstFourDayWeek;
     int fromWeekNo = ci.Calendar.GetWeekOfYear(
         assignArgs.FromDate,
         //ci.DateTimeFormat.CalendarWeekRule,
         rule,
         DayOfWeek.Sunday
     );
     int toWeekNo = ci.Calendar.GetWeekOfYear(
         assignArgs.ToDate,
         rule,
         DayOfWeek.Sunday
     );
     for (int j = fromWeekNo; j <= toWeekNo; j++)
     {
         sheet.Cells[index, j+1] = assignArgs.ProjectName;
         sheet.Cells[index, j+1].Interior.Color = color;
     }
     sheet.Cells[index, 1].Interior.Color = color;
     MessageBox.Show(assignArgs.ProjectName + " has been assigned to " + assignArgs.AssignedEmp, "Save Exception", MessageBoxButtons.OK, MessageBoxIcon.Information);
 }
コード例 #4
0
 private bool isProjectAssigned(Worksheet worksheet, AssignEventArgs assignArgs, Color color)
 {
     bool isAssigned = false;
     var rows = worksheet.Rows;
     for (int i = 2; (i < worksheet.Rows.Count && !isAssigned && rows[i].Cells[1].Value2 != null); ++i)
     {
         if (rows[i].Value2 != null)
         {
             for (int j = 2; j < 55; j++)
             {
                 if (rows[i].Cells[j].Value2 == assignArgs.ProjectName)
                 {
                     DialogResult dialogResult = MessageBox.Show(assignArgs.ProjectName + " has been assigned to " + rows[i].Cells[1].Value2 + ".\n Do you want to reassgin it?",
               "Save Exception", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation);
                     if (dialogResult == DialogResult.OK)
                     {
                         String r = "A" + i.ToString() + ":BB" + i.ToString();
                         worksheet.Range[r].Delete(XlDeleteShiftDirection.xlShiftUp);
                         assignProject(worksheet, assignArgs, color);
                     }
                     isAssigned = true;
                     return true;
                 }
             }
         }
     }
     return isAssigned;
 }