nRiTeCh
Oracle
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, but none of them is working.
Please experts advice on this.
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, but none of them is working.
Please experts advice on this.