我有零售程序我想通过分析条形码将比例尺添加到我的系统中,例如,如果扫描的条形码以92开头,表示该标尺由比例生成
并且我需要在92之后的5个数字作为项目条形码和5个数字来读取比例的重量和最后的数字它的检查号码
/另一个示例,如果扫描的条形码是92-11111-05122-2
***** 92如果是这个比例,它的支票号码
*****如果是,11111此商品ID及其价格和名称来自数据库
****** 05122它的重量/ 1000每公斤重量
****** 2它的检查无需使用它
*****我需要重量数量的文本框
任何建议 *********对不起我的语言*********
答案 0 :(得分:0)
我找到了这个解决方案:
Dim scode As String = barcode.Text.ToString
If (((scode.Length = 13) AndAlso scode.StartsWith("92"))) Then
Dim weight As Double = 0
'here to get item barcode
Dim getitembarcode As String = scode.Substring(2, 5)
'here to get item barcode
Dim getweight As String = scode.Substring(7, 5)
'to add weight per kilo
weight = (Double.Parse(getweight) / 1000)
qty.Text = weight
item_barcode.Text = getitembarcode
Else
End If
` 感谢