I'm passing the ChatWnd and Message params from the OnEvent_ChatWndSendMessage event to my own custom function. The reason for this is because it uses an xml request and if I just returned the values, it returns to late and the message had already sent. So I'm using the ChatWnd.SendMessage function to send a message to the same window that calledthe function. I'm using:
code:
Debug.Trace(ChatWnd.SendMessage(Message));
which returns true. It doesn't seem to be adding anything to the chat window however.
Any ideas?