was ist neu ¦  programmier tips ¦  indy artikel ¦  intraweb artikel ¦  informationen ¦  links ¦  interviews
 sonstiges ¦  tutorials ¦  Add&Win Gewinnspiel

Tips (1541)

Dateien (137)
Datenbanken (90)
Drucken (35)
Grafik (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Mathematik (76)
Multimedia (45)
Oberfläche (107)
Objekte/
ActiveX (51)

OpenTools API (3)
Sonstiges (126)
Strings (83)
System (266)
VCL (242)

Tips sortiert nach
Komponente


Tip suchen

Tip hinzufügen

Add&Win Gewinnspiel

Werbung

30 Visitors Online


 
...feststellen, ob ein Fenster ein unicode Fenster ist?
Autor: Michael Wiren
[ Tip ausdrucken ]  

Tip Bewertung (1):  
     


{
  The IsWindowUnicode function
  determines whether the specified window is a native Unicode window

  The character set of a window is determined by the use of the RegisterClass function.
  If the window class was registered with the ANSI version of RegisterClass (RegisterClassA),
  the character set of the window is ANSI. If the window class was registered with the Unicode
  version of RegisterClass (RegisterClassW), the character set of the window is Unicode.

  The system does automatic two-way translation (Unicode to ANSI) for window messages.
  For example, if an ANSI window message is sent to a window that uses the Unicode character set,
  the system translates that message into a Unicode message before calling the window procedure.
  The system calls IsWindowUnicode to determine whether to translate the message.

}

procedure TForm1.Button1Click(Sender: TObject);
begin
  
{determine if the window is a Unicode window}
  
if (IsWindowUnicode(Form1.Handle)) then
    
Button1.Caption := 'This window is a Unicode window'
  else
    
Button1.Caption := 'This window is not a Unicode window'
end;

 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners