What does this mean? Why does this happen?
I know when: It happens when I use CopyMemory() function and when I want to assign variable, returned by CopyMemory to my function (string variable).
Here's the code I use:
[code]
function MyFunction() As String

hLock = LockResource(hLoad)
hSize = SizeofResource(hInst, hFind)

ReDim b(0 To lsize) As String
CopyMemory b(0), hLock, hSize

FreeLibrary hInst
MyFunction = b

End function