basically this is my issue:
http://support.microsoft.com/kb/9832...rss&spid=14019

i have an FTP class module that works fine in 32 bit machines... but not in 64 bit Office/Win7


Code:
Private Function StripZ(ByVal s As String) As String
'Return all of s before the zero-terminator (if any).
    StripZ = Left$(s, lstrlen(StrPtr(s)))
End Function
highlights StrPtr and says type mismatch.

I tried the hotfix (from another location since its gone from MS) and it said it doesnt apply to my machine.. I have SP1 installed.

I tired to look at the StrPtr Definition and it says its hidden? (in the object browser)


What is StrPtr and how do i replace/fix it!
HELP!

Thanks