我需要能夠從組合框或文本框中選擇一個員工,並使其適用於我的datagridview,因此我只能看到選定的員工。下面是我的代碼,目前用於從表中選擇所有內容。有任何想法嗎?當你從組合框或文本框中選擇時創建一個datagridview
//Report groupbox - load groupbox
private void groupBox7_Enter(object sender, EventArgs e)
{
//Load Username
using (OleDbConnection con = new OleDbConnection(constring))
{
try
{
string query = "SELECT TellerNum FROM Employee ORDER BY TellerNum ASC";
OleDbDataAdapter da = new OleDbDataAdapter(query, con);
con.Open();
DataSet ds = new DataSet();
da.Fill(ds, "Name");
comboBox20.DisplayMember = "TellerNum";
comboBox20.DataSource = ds.Tables["Name"];
con.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
using (OleDbConnection con = new OleDbConnection(constring))
{
this.sESSIONTableAdapter.Fill(this.trainingDBDataSet5.SESSION);
try
{
con.Open();
}
catch (Exception ex) { MessageBox.Show(ex.Message); }
//Build DataGridView
try
{
sqlAdapter = new OleDbDataAdapter("SELECT SessionName, PrincipleName, SessionDate, TellerNum, Comments, SessionKey FROM [SESSION] WHERE TellerNum = @teller ORDER BY TellerNum;", con);
sqlCommand = new OleDbCommandBuilder(sqlAdapter);
sqlAdapter.InsertCommand = sqlCommand.GetInsertCommand();
sqlAdapter.UpdateCommand = sqlCommand.GetUpdateCommand();
sqlAdapter.DeleteCommand = sqlCommand.GetDeleteCommand();
dataset = new DataSet();
sqlAdapter.Fill(dataset, "[SESSION]");
dataGridView1.DataSource = null;
dataGridView1.DataSource = dataset.Tables["[SESSION]"];
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
DataGridViewLinkCell linkCell = new DataGridViewLinkCell();
dataGridView1[5, i] = linkCell;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
DataGridViewLinkCell linkCell = new DataGridViewLinkCell();
dataGridView1[5, i] = linkCell;
}
}
}
如在搜索和篩選或搜索和選擇? – Tom
我編輯了你的標題。請參閱:「[應該在其標題中包含」標籤「](http://meta.stackexchange.com/questions/19190/)」,其中的共識是「不,他們不應該」。 –
如果我使用組合框,我會讓它從列表中選擇一個員工(我已經完成)。然後,您將點擊提交,並創建關於該員工信息的datagridview。我可以使用一個文本框,但無論哪種方式,它可能是相同的過程。我只是不知道如何讓comboBox或textBox與datagridview關聯。 – JoeMarvel