B
Brian
for some reason I can not get this to work.. but there is something
different about it...
OffSet in both peices = 4812
VB 6 CODE:
Const Sch As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZab"
ShiftCode = Mid$(Sch, (OffSet Mod 28) + 1, 1)
this function returns RYDK which is correct..
VB.Net 2005 Code:
Const Sch As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZab"
Return Sch.Substring((OffSet Mod 28) + 1, 1)
returns SZEL
Why is there a differance? what am i missing?
different about it...
OffSet in both peices = 4812
VB 6 CODE:
Const Sch As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZab"
ShiftCode = Mid$(Sch, (OffSet Mod 28) + 1, 1)
this function returns RYDK which is correct..
VB.Net 2005 Code:
Const Sch As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZab"
Return Sch.Substring((OffSet Mod 28) + 1, 1)
returns SZEL
Why is there a differance? what am i missing?