J
Joy
Public Sub ProcessContent(ByVal content$, part1$, part2$)
Dim i%
content$ = Trim(content$)
i = InStr(content$, "#")
If i > 0 Then part1$ = Left(content$, i - 1)
part2$ = Mid(content$, i + 1, Len(content$) - i)
End Sub
does anyone know what does " Dim i%" mean?
why use Dim i%?? instead of like dim I as long
I got overflow error in i = InStr(content$, "#")
if InStr(content$, "#") is too large a number, what is the best way to deal
with it?
Dim i%
content$ = Trim(content$)
i = InStr(content$, "#")
If i > 0 Then part1$ = Left(content$, i - 1)
part2$ = Mid(content$, i + 1, Len(content$) - i)
End Sub
does anyone know what does " Dim i%" mean?
why use Dim i%?? instead of like dim I as long
I got overflow error in i = InStr(content$, "#")
if InStr(content$, "#") is too large a number, what is the best way to deal
with it?