quote:
Originally posted by Choli
quote:
Originally posted by J-Thread
Public Declare Function RegisterWindowMessage Lib "user32" Alias "RegisterWindowMessageA" (ByVal lpString As String) As Long
change that to
code:
Public Declare Function RegisterWindowMessage Lib "user32" Alias "RegisterWindowMessageW" (ByVal lpString As String) As Long
or better, change
quote:
Originally posted by J-Thread
Public Function Sendmsg(strMessage As String) As Boolean
nMsg = RegisterWindowMessage(strMessage)
Sendmsg = PostMessage(HWND_BROADCAST, nMsg, 0, 0)
End Function
to
code:
Public Function Sendmsg(strMessage As String) As Boolean
nMsg = RegisterWindowMessage(StrConv(strMessage, vbFromUnicode))
Sendmsg = PostMessage(HWND_BROADCAST, nMsg, 0, 0)
End Function
and do only 1 fo those 2 changes
Well, i tried them both (no not in the same time, i'm not stupid
), but they both didn't work... Read
this thread... I think i'm going to close messenger, it just won't work...
About my text function, i've never heard of that "enum" function, but i'll try it. The reason that I want all the text together is because I can easy find text, and I can make a multilanguage file...