Hi I am kind of new to VB.NET
I am converting a vb 6 app to vb.net 2008
'UPGRADE_ISSUE: AscB function is not supported.
for i = 43 to 44
If i = 44 Then
If AscB(bTest1(i)) <> 48 Then
'MsgBox "Batch Out Of Balance"
bOutOfBalance = True
End If
End If
next i
What is the function equivalent in VB.NET to AscB? or how do I do this in vb.net 2008?
bTest1 is a byte array that contain a file that was open in banary mode.
Thanks in advance
Ed
I am converting a vb 6 app to vb.net 2008
'UPGRADE_ISSUE: AscB function is not supported.
for i = 43 to 44
If i = 44 Then
If AscB(bTest1(i)) <> 48 Then
'MsgBox "Batch Out Of Balance"
bOutOfBalance = True
End If
End If
next i
What is the function equivalent in VB.NET to AscB? or how do I do this in vb.net 2008?
bTest1 is a byte array that contain a file that was open in banary mode.
Thanks in advance
Ed