RE: Altering incoming text
This is what i was doing....
If (StrComp(sNotifyCode, "msgbx", vbTextCompare) = 0) Then
Dim mymsgbox As String
mymsgbox = sText
MsgBox (mymsgbox)
ReceiveNotify = True
Exit Function
End If
I was trying several things with the msgbox but none of them did work...
|