H
Hugh Janus
The following code give me an error telling that "The targeted version
of the .NET Compact Framework does not support latebinding." I am
using VB.Net 2005. What do I need to do to fix this code because I
have not seen this before!
The 2 parts giving the error are:
- PointsSplit(PointLoop)
- PointsSplit(PointLoop + 1))
For PointLoop As Integer = 0 To PointsSplit.GetUpperBound(0) - 1
Dim DiffFound As String = FetchDBValue("Difficulty",
PointsSplit(PointLoop) & "-" & PointsSplit(PointLoop + 1))
If DiffFound > DiffToCheck Then
DiffBool = False
Exit Function
ElseIf DiffFound <= DiffToCheck Then
DiffBool = True
End If
Next PointLoop
of the .NET Compact Framework does not support latebinding." I am
using VB.Net 2005. What do I need to do to fix this code because I
have not seen this before!
The 2 parts giving the error are:
- PointsSplit(PointLoop)
- PointsSplit(PointLoop + 1))
For PointLoop As Integer = 0 To PointsSplit.GetUpperBound(0) - 1
Dim DiffFound As String = FetchDBValue("Difficulty",
PointsSplit(PointLoop) & "-" & PointsSplit(PointLoop + 1))
If DiffFound > DiffToCheck Then
DiffBool = False
Exit Function
ElseIf DiffFound <= DiffToCheck Then
DiffBool = True
End If
Next PointLoop