working on winsock chat and i use webbrowser as chat window
currently i use a messagebox that yes yes or no
but i wish to do this so it displays in room
![]()
this is the code i use
Dim yesno
yesno = MsgBox("friends request from" & " " & Text17(3).Text & " " & "do you wish to add him or her to your content list", vbYesNo, "Change rooms")
If yesno = vbYes Then
me.caption="accepted"
else
me.caption="denied"
end if
as u all know msgbox isnt good when receiving data so i wish to displayy it in room instead thanks
currently i use a messagebox that yes yes or no
but i wish to do this so it displays in room

this is the code i use
Dim yesno
yesno = MsgBox("friends request from" & " " & Text17(3).Text & " " & "do you wish to add him or her to your content list", vbYesNo, "Change rooms")
If yesno = vbYes Then
me.caption="accepted"
else
me.caption="denied"
end if
as u all know msgbox isnt good when receiving data so i wish to displayy it in room instead thanks