我的应用程序通过openfiledialog连接到excel文件。我有两个搜索,主要搜索和次要搜索。我想在一个datagridview中得到他们的结果。我的代码(主搜索):
<body disbled-scrollFun="true">
</body>
和辅助搜索:
private void searchbtn_Click(object sender, EventArgs e)
{
try
{
string connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties=Excel 12.0;";
OleDbConnection conn = new OleDbConnection(connStr);
OleDbDataAdapter da = new OleDbDataAdapter("Select * from [" + testcb.SelectedItem.ToString() + "$] where [" + comboBox1.SelectedItem.ToString() + "] = '" + textBox5.Text + "'", conn);
DataTable dt = new DataTable();
da.Fill(dt);
dataGridView2.DataSource = dt;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
有什么想法吗?
答案 0 :(得分:1)
您可以有2个数据表,例如dt1
,dt2
和合并的dtAll
。然后,您可以合并2并将其设置为数据源
private UpdateDataSource()
{
dataGridView2.Rows.Clear();
dataGridView2.Refresh();
dtAll.Clear();
if(dt1 == null && dt2 != null)
{
dtAll = dt2;
}
else if(dt2 == null && dt1 != null)
{
dtAll = dt1;
}
else if(dt1 != null && dt2 != null)
{
dtAll = dt1.Copy();
dtAll.Merge(dt2);
}
else
{
dtAll = null;
}
dataGridView2.DataSource = dtAll;
}
您的事件处理程序应如下所示:
private void button1_Click(object sender, EventArgs e)
{
try
{
string connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties=Excel 12.0;";
OleDbConnection conn = new OleDbConnection(connStr);
OleDbDataAdapter da = new OleDbDataAdapter("Select * from [" + testcb.SelectedItem.ToString() + "$] where [" + addcb.SelectedItem.ToString() + "] = '" + addtb.Text + "'", conn);
dt2.Clear();
da.Fill(dt2);
UpdateDataSource();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
答案 1 :(得分:0)
在二级搜索中,而不是:
dataGridView2.DataSource = ds;
尝试:
DataTable combinedData = (DataTable)(dataGridView2.DataSource);
combinedData.Merge(ds);
dataGridView2.DataSource = combinedData;
您可能还必须避免在新数据源中重复。另外:我没有测试这个解决方案,它只是一个想法。
希望有帮助
答案 2 :(得分:0)
您需要使用<?= $form->field($model, 'captcha')->hiddenInput()->label(false) ?>
<div class="form-group">
<mark><b><?= $model->captcha ?></b></mark>
</div>
<?= $form->field($model, 'recaptcha')->textInput(['placeholder' => 'Enter Captcha'])->label(false) ?>
。 here