我有一个带有显示库存的datagridview 的表单。库存表有一个名为 unitid 的字段。
我希望它能够工作,这样当我从库存数据网格视图中选择一条记录时,它必须从例如 frminventorydetails 打开另一个记录,并从我选择的记录中显示文本框和组合框中的所有字段。
我有它的工作,但问题是组合框。它没有在组合框中显示正确的值。当详细信息表单加载时,我有一种方法可以使用单位表中的值加载组合框。但是当详细信息表单加载时,它不会转到相应的显示成员。
当我将组合框以与库存数据网格相同的形式放置时,它可以完美运行。但当组合框是另一种形式时不起作用。
private void dginventory_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
try
{
string getdetails = @"select * from tblinventory where
tblinventory.invid='" + Convert.ToInt32(dginventory.CurrentRow.Cells[0].Value.ToString()) + "'";
performqueries.singleResult(getdetails);
frmviewinvdetails invdetopen = new frmviewinvdetails();
if (performqueries.dt.Rows.Count > 0)
{
invdetopen.txtinvid.Text = performqueries.dt.Rows[0].Field<int>("invid").ToString();
invdetopen.txtinvcode.Text = performqueries.dt.Rows[0].Field<string>("InventoryCode").ToString();
invdetopen.txtInvDescription.Text = performqueries.dt.Rows[0].Field<string>("InvDescription").ToString();
invdetopen.txtInvShortText.Text = performqueries.dt.Rows[0].Field<string>("InvShortText").ToString();
//here im assigning the unitid to the selectedvalue property of the combobox in the details form.
invdetopen.cbunits.SelectedValue = Convert.ToInt32(performqueries.dt.Rows[0].Field<int>("unitid").ToString());
}
invdetopen.ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
//throw;
}
// this fills the combobox on the details form when it loads
private void frmviewinvdetails_Load(object sender, EventArgs e)
{
SqlConfig performcrud = new SqlConfig();
string units = "select * from tblunits";
performcrud.fill_CBO(units, cbunits);
}
我希望组合框为我选择的特定项目显示适当的单位描述,但它只保留在第一条记录上。
如果组合框与数据网格位于相同的表单上,则它可以工作,但如果我打开一个新表单,则不会。