| 
O.P.  RE: my plugin...
 chears for that mate, also 1 orhter problem.... 
 
 
Public Function ParseTag(ByVal sTag As String, ByVal oConversationWnd As Object, ByRef sResult As String) As Boolean 
    If (StrComp(sTag, "(!XWABOUT)", vbTextCompare) = 0) Then 
frmAbout.Show vbModal, Screen.ActiveForm 
        sResult = "" 
        ParseTag = True 
        Exit Function 
    End If 
    ParseTag = False 
End Function 
 
 
When this tag is sent, it actually sends (!XWABOUT) to the chat... 
how do i stop this being sent... 
 |