Hello,
I have a .dll for a handhelp upc scanner that is in vb 6. Anyone know how to write the following 2 lines of code in VB.net.
Dim NameStr As String
Dim TextAsc(120) As Byte
'120 is large enough, no more
Dim TextLen As Byte
Dim Count As Byte
Open NameStr For Binary Access Write As #1 Len = 1
Put #1, , TextAsc(Count - 1)
Thank You for any help you can give me..
I have a .dll for a handhelp upc scanner that is in vb 6. Anyone know how to write the following 2 lines of code in VB.net.
Dim NameStr As String
Dim TextAsc(120) As Byte
'120 is large enough, no more
Dim TextLen As Byte
Dim Count As Byte
Open NameStr For Binary Access Write As #1 Len = 1
Put #1, , TextAsc(Count - 1)
Thank You for any help you can give me..