资 源 简 介
A barcodescanner. The application can read text files with the extensions csv and barcodescanner. It is opensource under a GPLv3 license. You may not use it Commercial only with a license that later this year or next year is published. The version must be changed to publish on the web, so there are no setups or other things. The English version is ready. Here is a part of the code:
Imports System.IOImports Microsoft.VisualBasic.FileIOPrivate Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click‘ Code to be searchedDim code As String = Textbox1.Text‘ The file to search‘ You can "C:codes.csv" change to each file.Dim parser As TextFieldParser = New TextFieldParser("C:codes.csv")parser.Delimiters = New String() {";"}‘ Search line by lineWhile Not parser.EndOfData‘ Is the code in the file?If parser.ReadFields.Contains(code) Then‘ Show that the code is found.‘ Label1.Text is in WPF Label