0

我有一个程序可以从扫描仪读取条形码,并在用户按下“完成”按钮时保存在文件中。

现在,我想让它自动化,当用户扫描条形码时,它会自动保存在一个文本文件中。

4

1 回答 1

0

这是简单的逻辑。

  1. 获取条码长度
  2. 执行点击

    If barcodeText.Text.Length >= 10 Then
        Call DoneButtonClick(Nothing, Nothing)
    End If
    
于 2013-02-21T04:10:50.830 回答