コード例 #1
0
 public void Update()
 {
     if (!createMode)
     {
         throw new Exception("Tryb do przeglądania - update niedozwolone!");
     }
     try
     {
         activeControl = FindActiveControl();
         activeControl.Update(ctlCommonDetailsToAdd.DateToExecute);
         AddMessageOK("Dane zostały zapisane");
     }
     catch (Exception exc)
     {
         AddMessageError("Wystąpił błąd podczas próby Update - " + exc.ToString());
     }
 }
コード例 #2
0
 public void InitControl(bool createMode, string taskGuid)
 {
     DisableControls();
     this.createMode = createMode;
     ctlCommonTaskDetails.Visible = !createMode;
     activeControl = FindProperControl(taskGuid);
     activeControl.Visible = true;
     if (createMode)
     {
         ctlCommonDetailsToAdd.Visible = true;
         btRefresh.Visible = false;
         btSave.Visible = true;
     }
     else
     {
         ctlCommonDetailsToAdd.Visible = false;
         btRefresh.Visible = true;
         btSave.Visible = false;
     }
     hdTaskGuid.Value = taskGuid;
 }