I'm attempting to assign a string's bytes to a double word array. Here's what I tried that doesn't work:
I know there is a way to do this, just can't remember how!
Any ideas?
Code:
dim bc???(1 to lnw???) dim ptbc as dword ptr dim ptw as string ptr ptbc=varptr(bc???(1)) ptw=strptr(w$) ptbc=ptw
Any ideas?
Comment