In a RichEdit i have this text '123456'
I select '34', then make it bold:
richedit1.SelAttributes.Style := richedit1.SelAttributes.Style +
[fsBold];
Then I select '123456', and make it underlined:
RichEdit1.SelAttributes.Style := richedit1.SelAttributes.Style +
[fsUnderline];
The result is that '123456' now is underlined, but there is no bold at
all!
Is this Delphi's component problem, or is Windows problem and of
course how to solve it?