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()); } }
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; }