JavaDude32
Programmer
I have a loop that essentially breaks down a string character by character (if there is a charAt or any type of method such like please point me to it). It refuses a variable as a 2nd argument even with the CLng conversion function.
Dim intTemp
For I = 0 to Len(Session("mapFeatures"
)-1 Step 1
intTemp = Session("mapFeatures"
intTemp = Mid(intTemp,CLng(I),1)
intTemp = CInt(intTemp)
mapFeatures(intTemp) = "yes"
Next
Dim intTemp
For I = 0 to Len(Session("mapFeatures"
intTemp = Session("mapFeatures"
intTemp = Mid(intTemp,CLng(I),1)
intTemp = CInt(intTemp)
mapFeatures(intTemp) = "yes"
Next