简体   繁体   中英

trying to create a refreshing button for gridview

I have made an c# program to access a database and write some data to it, and show it in a grid-view. That all works but now i want the grid-view to refresh because it wont show the data i just entered into the database

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data.OleDb;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data;


namespace ForexDev
{
    public partial class Form1 : Form
    {
        private OleDbConnection Database1;
        private OleDbCommand oledbcmd = new OleDbCommand();
        private string connParam = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\floortje\Documents\Visual Studio 2010\Projects\ForexDev\ForexDev\Database11.accdb;Persist Security Info=False";

        public Form1()
        {
            Database1 = new OleDbConnection(connParam);
            InitializeComponent();

        }

        private void btnsave_Click(object sender, EventArgs e)
        {
            try
            {

                Database1.Open();
                oledbcmd.Connection = Database1;
                oledbcmd.CommandText = "INSERT INTO Forex ([Order],[Tijd gekocht],Type,Groote,Symbool,[Koers inkoop],[S/l],[T/p],[Koers Verkoop],[Profit/Loss]) VALUES ('" + this.txtOrder.Text + "','" + this.txtTijd.Text + "','" + this.txtType.Text + "','" + this.txtgroote.Text + "','" + this.txtSymb.Text + "','" + this.txtKoop.Text + "','" + this.StopLoss.Text + "','" + this.TakeProfit.Text + "','" + this.txtVerkoop.Text + "','" + this.Winstverl.Text + "');";
                oledbcmd.CommandType = CommandType.Text;
                int temp = oledbcmd.ExecuteNonQuery();
                dataGridView1.Refresh();
                dataGridView1.Update();
                Database1.Close();


                if (temp > 0)
                {
                    MessageBox.Show("Added");

                }
                else
                {
                    MessageBox.Show("Failed");
                }


            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'database11DataSet.Forex' table. You can move, or remove it, as needed.
            this.forexTableAdapter.Fill(this.database11DataSet.Forex);



        }

        private void button2_Click(object sender, EventArgs e)
        {
            Database1.Close();

        }

        private void button1_Click(object sender, EventArgs e)
        {
            Database1.Open();

            this.dataGridView1.Refresh();
            this.dataGridView1.Update();
            Database1.Close();
        }

    }

}

I want to thank you tariq for putting me on the right track, i did not mark your answer as the answer to my problem because of the following :

The answer to my problem was that i needed to bind the database to the gridview like this : (and correct me if this is not databinding)

{

                    Database1.Open();
                    oledbcmd.Connection = Database1;
                    oledbcmd.CommandText = textBox1.Text;
                    oledbcmd.CommandText = "DELETE FROM Forex ([Order],[Tijd gekocht],Type,Groote,Symbool,[Koers inkoop],[S/l],[T/p],[Koers Verkoop],[Profit/Loss]) VALUES ('" + this.txtOrder.Text + "','" + this.txtTijd.Text + "','" + this.txtType.Text + "','" + this.txtgroote.Text + "','" + this.txtSymb.Text + "','" + this.txtKoop.Text + "','" + this.StopLoss.Text + "','" + this.TakeProfit.Text + "','" + this.txtVerkoop.Text + "','" + this.Winstverl.Text + "');";
                    oledbcmd.CommandType = CommandType.Text;
                    int temp = oledbcmd.ExecuteNonQuery();
                    dataGridView1.DataSource = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\floortje\Documents\Visual Studio 2010\Projects\ForexDev\ForexDev\Database11.accdb;Persist Security Info=False";
                    dataGridView1.Refresh();
                    this.dataGridView1.Refresh();
                    DataSet ds = new DataSet();
                    DataTable dt = new DataTable();
                    ds.Tables.Add(dt);
                    OleDbDataAdapter dd = new OleDbDataAdapter();
                    dd = new OleDbDataAdapter("Select * From Forex", Database1);
                    dd.Fill(dt);
                    dataGridView1.DataSource = dt.DefaultView;

                    Database1.Close();

更新后添加

dataGridView1.DataBind();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM