在另一个TextBox中输入数据时TextBox完成

时间:2017-05-11 08:48:44

标签: c# .net database winforms ms-access

我们假设我的表格中有两个string str = "SampleString"; objWorksheet.Cells[2, 1].Value = str.PadLeft(str.Length + 1, ' ');

like this

如您所见,我必须在第一个键盘上输入主键,我希望第二个TextBox显示与此键对应的字段的值。

我正在使用Access 2016,我们可以像这样考虑我的表:

TextBox

以下是我的问题 :是否可以显示带有+----------+--------+------+---------+ | Field | Type | Null | Key | +----------+--------+------+---------+ | Item | Number | NO | PRIMARY | | Provider | Text | YES | | +----------+--------+------+---------+ 属性的提供商字段?否则你会怎么做到这一点? (的 C#

1 个答案:

答案 0 :(得分:0)

我解决了我的问题!

private void textBoxItem_TextChanged(object sender, EventArgs e)
{
    int item;
    var row;

    if (int.TryParse(textBoxItem.Text, out item))
    {
        row = dataSet.PROVIDERS.FindByitem(item);

        if (row != null)
            textBoxProvider.Text = row.provider;
    }
}