If I've formatted a rich text box as follows:
I get output like this: "Hello1 Hello2"
However, is there a way to copy this text and paste it into say, Microsoft Word without losing the formatting? It needs to support Unicode characters too.
Code:
RTB9.SelStart = 0
RTB9.SelLength = 6
RTB9.SelBold = True
RTB9.SelText = "Hello1 "
RTB9.SelStart = 8
RTB9.SelLength = 6
RTB9.SelBold = False
RTB9.SelText = "Hello2 "
However, is there a way to copy this text and paste it into say, Microsoft Word without losing the formatting? It needs to support Unicode characters too.