Procedure.S ConvertCFStringIntoString(CFStringRef)
Protected String.s = Space(256)
If CFStringRef
CFStringGetCString(CFStringRef, @String, Len(string), 0) <--- Invalid memory access
EndIf
ProcedureReturn Trim(String)
EndProcedure
I only get this error when I compile to x64, it works in x86?
Anyone know why it would not work in 64-bit mode?
Thanks All

