根据metroTextBox_TextChanged中的特定列过滤数据表

时间:2018-12-15 14:18:54

标签: c#

我正在尝试根据metroTextBox_TextChanged中的特定列过滤正文中的数据表。

    public void button3_Click(object sender, EventArgs e)
    {
        DbDataAdapter arg_17_0 = new OleDbDataAdapter("select * from monitor_users", this.connection2);
        DataTable dataTable = new DataTable();
        arg_17_0.Fill(dataTable);
        this.dataGridView1.DataSource = dataTable;
        MessageBox.Show("Done");
    }



    // Token: 0x0600209F RID: 8351 RVA: 0x00063FEB File Offset: 0x000621EB

    private void metroTextBox_0_TextChanged(object sender, EventArgs p1)
    {

        // What should the code be here ?
    }

0 个答案:

没有答案
相关问题