Beispiel #1
0
        public void Update()
        {
            //create an instance of the Reply Support Collection
            clsReplySupportCollection AllReplySupports = new clsReplySupportCollection();
            //validate the data on the Windows Form
            string Error = AllReplySupports.ThisReplySupport.Valid(txtEmail.Text, txtDescription.Text, txtDateReplied.Text);

            //if the data is OK then add it to the object
            if (Error == "")
            {
                //find the record to UPDATE
                AllReplySupports.ThisReplySupport.Find(mReplySupportId);
                //get the data entered by the user
                AllReplySupports.ThisReplySupport.Email       = txtEmail.Text;
                AllReplySupports.ThisReplySupport.Description = Convert.ToString(txtDescription.Text);
                AllReplySupports.ThisReplySupport.DateReplied = Convert.ToDateTime(txtDateReplied.Text);

                //UPDATE the record
                AllReplySupports.Update();
                //All done so redirect back to the main page
                ReplySupportManageForm RSM = new ReplySupportManageForm();
                this.Hide();
                RSM.ShowDialog();
                this.Close();
            }
            else
            {
                lblError.Text = "There were problems with the data entered: " + Error;
            }
        }
        private void btnReplySupportManage_Click(object sender, EventArgs e)
        {
            ReplySupportManageForm RSM = new ReplySupportManageForm();

            this.Hide();
            RSM.ShowDialog();
            this.Close();
        }
Beispiel #3
0
        private void btnNo_Click(object sender, EventArgs e)
        {
            //All done so redirect back to the main page
            ReplySupportManageForm RSM = new ReplySupportManageForm();

            this.Hide();
            RSM.ShowDialog();
            this.Close();
        }
Beispiel #4
0
        private void btnYes_Click(object sender, EventArgs e)
        {
            string            message = "The Reply has been deleted successfully.";
            string            caption = "Deletion Confirmation";
            DialogResult      result;
            MessageBoxButtons button = MessageBoxButtons.OK;

            result = MessageBox.Show(message, caption, button);

            if (result == DialogResult.OK)
            {
                //delete the record
                DeleteReplySupport();
                //All done so redirect back to the main page
                ReplySupportManageForm RSM = new ReplySupportManageForm();
                this.Hide();
                RSM.ShowDialog();
                this.Close();
            }
        }
Beispiel #5
0
        private void btnUpdate_Click(object sender, EventArgs e)
        {
            clsReplySupportCollection AllReplySupports = new clsReplySupportCollection();
            string            Error   = AllReplySupports.ThisReplySupport.Valid(txtEmail.Text, txtDescription.Text, txtDateReplied.Text);
            string            message = "Are you sure to Update the existing Reply?";
            string            caption = "User Confirmation!";
            MessageBoxButtons buttons = MessageBoxButtons.YesNo;
            DialogResult      result;

            //Displays the MessageBox

            //if there are no Errors returned
            if (Error == "")
            {
                //show the Message box
                result = MessageBox.Show(message, caption, buttons);

                //if "Yes" is pressed
                if (result == DialogResult.Yes)
                {
                    //execute the Update method
                    Update();

                    //All done so redirect back to the main page
                    ReplySupportManageForm RSM = new ReplySupportManageForm();
                    this.Hide();
                    RSM.ShowDialog();
                    this.Close();;
                }
            }
            else
            {
                //report an error
                lblError.Text = "There were problems with the data entered : " + Error;
            }
        }