I have chat application which am using webbrowser to display the chat session.
I want to give the user the chance to save the chat session so i used the codes below which is working fine but i have realised is that when the webbrowser contain smiley or emotions it doesn't show when the user saves it.
Dim strsave As String
cdSave.FilterIndex = 1
cdSave.Filter = "Word File (*.doc)|*.doc"
cdSave.ShowSave
strsave = cdSave.FileName
If Not strsave = "" Then
Open strsave For Output As #1
Print #1, ("Log for " & getName & " saved at: " & Time)
Print #1, ("--------------------------------------------------------------")
Print #1, (wbDialog.Document.activeElement.innerText)
Close #1
End If
Exit Sub
Any help?