Hey,
How can I make something happen on a particular Command Argument? Have a look at my code below. It may help you see what i'm trying to do. It doesnt work though.
Any help is much appreciated
code:
Public Function ParseCommand(ByVal sCommand As String, ByVal sCommandArg As String, ByVal oConversationWnd As Object, ByRef sResult As String) As Boolean
If (StrComp(LCase(sCommand), "/xtest", vbTextCompare) = 0) & sCommandArg = "%test" Then
MsgBox "Test"
ParseCommand = True
Exit Function
End Function