is there a way to "attach" or assign a tooltiptext or a tag to a picture inserted into a richtextbox??

im using this code to replace smiles with the picture of the smile (chat program)

VB Code:
  1. For X = 0 To picSmile.UBound
  2.             If RTB1.Find(picSmile(X).Tag, tLoc, , rtfMatchCase) <> -1 Then
  3.                 RTB1.SelStart = RTB1.Find(picSmile(X).Tag, tLoc, , rtfMatchCase)
  4.                 RTB1.SelLength = Len(picSmile(X).Tag)
  5.                 Clipboard.Clear
  6.                 Clipboard.SetData picSmile(X).Image
  7.                 SendMessage RTB1.hWnd, WM_PASTE, 0, 0
  8.             End If
  9.         Next

what I would like is to have the smile show in the message textbox (where u enter the message...) which I can do, but when sending the message I need to be able to convert it back to text to send... (or is there an easy way to just trans the text and picture at the same time??)

Thanks!