i have 2 exe
exe1 send a string to exe2 via SendMessage function
i'm using Spy++ to find out the address in hexa for a TextBox from exe2 wich must receive the string
the code is:

Public Function fSENDra()
Dim s$, kk
s = gSTRING
kk = CLng(&HC0500) ' find out with Spy++
SendMessage kk, WM_SETTEXT, 0, s
End Function

but look what appear in TextBox from exe2
¼÷d

or
¤ç#

or
ç#

what is wrong with my code
thanks in advance for any sugestion