Help inserting whitespace in this windows uifile code

nRiTeCh

Skilled
This is a code ref. from a uifile of win xp logonui.exe


STRINGTABLE
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
{
22, "To begin \n click your user name"
}


The output on the logon screen is:

To begin
click your user name.


But I want it this way:

To begin
<space>click your user name


i.e.

To begin
click your user name


But the problem is how to insert whitespace after \n ?
I tried \t, \r, spaces, &nbsp; but none of them is working.

Please experts advice on this.
 
Back
Top