Пример #1
0
        //This allow use to edit individual cells in the gridview table
        private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
            //retrieve values from the selected row and update to database
            var id          = Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value);
            var date        = Convert.ToDateTime(dataGridView1.Rows[e.RowIndex].Cells[1].Value);
            var company     = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[2].Value);
            var website     = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[3].Value);
            var title       = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[4].Value);
            var fn          = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[5].Value);
            var ls          = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[6].Value);
            var address     = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[7].Value);
            var city        = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[8].Value);
            var province    = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[9].Value);
            var postalCode  = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[10].Value);
            var phoneNumber = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[11].Value);
            var email       = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[12].Value);
            var notes       = Convert.ToString(dataGridView1.Rows[e.RowIndex].Cells[13].Value);

            BusinessContactRepo businessContactRepo = new BusinessContactRepo(context);

            businessContactRepo.updateData(id, date, company, website, title, fn, ls, address, city,
                                           province, postalCode, email, phoneNumber, notes); //update the database

            MessageBox.Show("Update Successful");                                            //Let user know update was successful

            GetContacts();                                                                   //Reload contact list
        }
Пример #2
0
        //Allow users to refine results in datagrid by searching by firstname, lastname or company.
        private void btnSearch_Click(object sender, EventArgs e)
        {
            BusinessContactRepo businessContactRepo = new BusinessContactRepo(context);

            switch (comboBox1.SelectedItem.ToString())
            {
            case "First Name":
                bindingSource1.DataSource         = businessContactRepo.getByFName(txtSearch.Text.ToLower()); //Set binding source to the result of the select by firstname query from repository.
                dataGridView1.DataSource          = bindingSource1;                                           //Set the datagridview source to the binding source.
                dataGridView1.Columns[0].ReadOnly = true;                                                     //Set id column to readonly.
                dataGridView1.Refresh();                                                                      //Refresh the gridView
                break;

            case "Last Name":
                bindingSource1.DataSource         = businessContactRepo.getByLName(txtSearch.Text.ToLower()); //Set binding source to the result of the select by lastname query from repository.
                dataGridView1.DataSource          = bindingSource1;                                           //Set the datagridview source to the binding source.
                dataGridView1.Columns[0].ReadOnly = true;                                                     //Set id column to readonly.
                dataGridView1.Refresh();                                                                      //Refresh the gridView
                break;

            case "Company":
                bindingSource1.DataSource         = businessContactRepo.getCompany(txtSearch.Text.ToLower()); //Set binding source to the result of the select by company query from repository.
                dataGridView1.DataSource          = bindingSource1;                                           //Set the datagridview source to the binding source.
                dataGridView1.Columns[0].ReadOnly = true;                                                     //Set id column to readonly.
                dataGridView1.Refresh();                                                                      //Refresh the gridView
                break;
            }
        }
Пример #3
0
        //Update contact when edit button is clicked
        private void btnEdit_Click(object sender, EventArgs e)
        {
            BusinessContactRepo businessContactRepo = new BusinessContactRepo(context);

            //Get id from hidden text input and convert to int
            int id = Convert.ToInt32(txtID.Text);

            businessContactRepo.updateData(
                id,
                dateTimePicker1.Value.Date,
                txtWebsite.Text,
                txtCompany.Text,
                txtTitle.Text,
                txtFName.Text,
                txtLName.Text,
                txtAddress.Text,
                txtCity.Text,
                txtProvince.Text,
                txtPostalCode.Text,
                txtEmail.Text,
                txtPhoneNumber.Text,
                txtNotes.Text);                   //update the database

            MessageBox.Show("Update Successful"); //Let user know update was successful

            GetContacts();                        //Reload contact list
        }
Пример #4
0
        //Method to GetContacts
        private void GetContacts()
        {
            BusinessContactRepo businessContactRepo = new BusinessContactRepo(context);

            bindingSource1.DataSource         = businessContactRepo.getData(); //Set binding source to the result of the select all query from repository.
            dataGridView1.DataSource          = bindingSource1;                //Set the datagridview source to the binding source.
            dataGridView1.Columns[0].ReadOnly = true;                          //Set id column to readonly.
            dataGridView1.Refresh();                                           //Refresh the gridView
        }
Пример #5
0
        //Delete contact when delete button is clicked
        private void btnDelete_Click(object sender, EventArgs e)
        {
            BusinessContactRepo businessContactRepo = new BusinessContactRepo(context);

            //Get id from hidden text input and convert to int
            int id = Convert.ToInt32(txtID.Text);

            businessContactRepo.deleteData(
                id);                            //remove from database

            MessageBox.Show("Contact Removed"); //Let user know contact was removed

            GetContacts();                      //Reload contact list
        }
Пример #6
0
        //Add new contact when add button is clicked
        private void btnAdd_Click(object sender, EventArgs e)
        {
            BusinessContactRepo businessContactRepo = new BusinessContactRepo(context);

            //Read values from form and add to addData method as parameters.
            businessContactRepo.addData(
                dateTimePicker1.Value.Date,
                txtWebsite.Text,
                txtCompany.Text,
                txtTitle.Text,
                txtFName.Text,
                txtLName.Text,
                txtAddress.Text,
                txtCity.Text,
                txtProvince.Text,
                txtPostalCode.Text,
                txtEmail.Text,
                txtPhoneNumber.Text,
                txtNotes.Text
                );
            GetContacts(); //Reload contact list
        }