I have searched subject offers, but Did not manage to get right one ...
Sorry if I am mistaking. If so, please point to correct Question here.
Okay, back to business. Situation: I am using ShowMessage() as simple "Status Briefing" provider for some events in Application:
procedure SatusBriefingDialog();
begin
if Sender = SomeObject then
begin
Application.NormalizeToMosts;
MessageDlg(Handle, PChar('The_string_that_forms_nice_informative_window / dialog'));
Application.RestoreTopMosts;
end;
end;
Now, I want to polish it, therefore I want to use extended ascii table, but, I cannot choose best way to access them. Maybe I just don't know that magical function ...
Here is approach that uses OEMToANSI / OEMToChar and vice-verse functions: http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20381022.html . I tried them with no luck, probobly because of:
Syntax from EDN / MS-Help
BOOL OemToChar( LPCSTR lpszSrc, LPTSTR lpszDst );
Parameters
lpszSrc [in] Pointer to a null-terminated string of characters from the OEM-defined character set.
lpszDst [out] Pointer to the buffer for the translated string.
If the OemToChar function is being used as an ANSI function, the string can be translated in place by setting the lpszDst parameter to the same address as the lpszSrc parameter. This cannot be done if OemToChar is being used as a wide-character function.
What I need is Char(Ord(170)); , Char(Ord(180)); and Char(Ord(190)) - http://www.asciitable.com/. Obviously, with default WInXP codepage I cannot use them. Now, I google a bit and found this solution:
FormShow Event Code:
procedure TMain.FormShow(Sender: TObject);
var
i : longint;
begin
re.Font.Name := 'Terminal';
re.Font.Size := 9;
//seems that charset must be set last
re.Font.Charset := OEM_CHARSET;
re.DefAttributes.Name := 'Terminal';
re.DefAttributes.Size := 9;
re.DefAttributes.Charset := OEM_CHARSET;
re.SelectAll;
re.SelAttributes := re.DefAttributes;
//turn off richedit's auto font switching...
i := SendMessage(re.Handle, EM_GETLANGOPTIONS, 0, 0);
i := i and not IMF_AUTOFONT;
SendMessage(re.Handle, EM_SETLANGOPTIONS, 0, i);
end;
Also these Fonts will display correctly >> Courier New Lucida Console MS Mincho
Now, the question is - what would be best way to say Windows Dialogs (API) to use OEM charset withing procedure that triggers ShowMessage(); ? Overriding ShowMessage(); ? Inheriting some richedit features? Various OwnerDraw() or WndProc() approaches ... too many options, but ... which ... I am confused. :(
Please help me to choose and point to, of course, subjectively most effective and most code-less solution. Thanks.