hw to ensure font type, size and color same when receive from sender?
if sender A send a message with font size = 16, font type = time new roman......when receiver recieve this message, the message must display with the size, type and color of sender set......how is the process work?
Re: hw to ensure font type, size and color same when receive from sender?
Could you send the information with the message, like Size=16|Font=fontA|Message=message and just split all the information?
Re: hw to ensure font type, size and color same when receive from sender?
i cannot understand what u mean?
Re: hw to ensure font type, size and color same when receive from sender?
Send it as suggested, but include a character to let you know on the other side that you are including the Font info.
with the font
||Size=16|Font=fontA|Message=message
without the font
|Message=message
Just check for || when you receive it, if it is there, change the font, otherwise, leave it as it was. or else you could send the font each time, but that seems like a waste.