J
Joe
Hi,
When I get the length of a string I expect to get an integer back. I
getting back &H6 for both intVar1 and intVar2 from the following code:
Dim strVar As String
Dim intVar1 As Integer
Dim intVar2 As Integer
strVar = "foobar"
intVar1 = strVar.Length
intVar2 = CStr(Len(strVar))
Could someone PLEASE tell me what I'm doing wrong???
Thanks
- Joe
When I get the length of a string I expect to get an integer back. I
getting back &H6 for both intVar1 and intVar2 from the following code:
Dim strVar As String
Dim intVar1 As Integer
Dim intVar2 As Integer
strVar = "foobar"
intVar1 = strVar.Length
intVar2 = CStr(Len(strVar))
Could someone PLEASE tell me what I'm doing wrong???
Thanks
- Joe