Hi, on some PCs I am finding that my calls to DrawText() result in colons being placed at the start of the text.
dc.DrawText( "Name:", &rText, DT_LEFT | DT_VCENTER | DT_WORDBREAK );
The output on my PC is
Name:
But on one PC in particular it is:
:Name
If I change DT_LEFT to DT_CENTER the colon appears at the end where it should. Any ideas, please?