当在form1上扫描条形码时,我调用数据库以获取该条形码的项目,然后使用预先填充的数据打开form2。

如果我使用文本更改事件,则它的生成次数与一个条形码中的数字相同。

我无法检查条形码的长度,因为每次都可能不同。

扫描条形码时,我应该使用哪个事件只打一个电话?

我尝试了TextChanged,KeyPress,KeyDown事件,但是它们都被多次调用了。

    private void txt_Barcode_TextChanged(object sender, EventArgs e)
    {
        con.Open();
        GenerateInvoice gn = new GenerateInvoice();
        string query = "SELECT * FROM dbo.Inventory WHERE Barcode = '" + txt_Barcode.Text + "' ";

        SqlCommand cmd = new SqlCommand(query, con);
        SqlDataReader dr = cmd.ExecuteReader();


        while (DR1.Read())
        {
            gn.txt_Barcode.Text = dr["Barcode"].ToString();
            gn.txt_ProductName.Text = dr["ProductName"].ToString();
            gn.txt_Price.Text = dr["SellingPrice"].ToString();
            gn.txt_QTY.Text = 1.ToString();
            gn.txt_Total.Text = dr["SellingPrice"].ToString();

        }
        con.Close();
    }

我愿意使用文本框捕获Form1上的条形码(我将其隐藏在UI上)

最佳答案

这是扫描仪处于WedgeMode的结果。基本上,它充当键盘,并且扫描的每个字符都会创建一个文本更改事件。

有很多解决方案。

您可以使用购买扫描仪的公司提供的api代替楔模式

但是,一个简单的解决方法是在扫描仪上放置前缀和后缀(例如ascii码,STXETX)(通常由扫描仪提供此设置),这样您便知道何时拥有完整的条形码数据。

当您看到有效的条形码时,您将发生一个事件,而不是每个扫描字符的事件。

关于c# - 如何在不使用TextChanged事件的情况下在Winform上捕获整个条形码值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55410799/

10-13 06:56