Delphi World - это проект, являющийся сборником статей и малодокументированных возможностей  по программированию в среде Delphi. Здесь вы найдёте работы по следующим категориям: delphi, delfi, borland, bds, дельфи, делфи, дэльфи, дэлфи, programming, example, программирование, исходные коды, code, исходники, source, sources, сорцы, сорсы, soft, programs, программы, and, how, delphiworld, базы данных, графика, игры, интернет, сети, компоненты, классы, мультимедиа, ос, железо, программа, интерфейс, рабочий стол, синтаксис, технологии, файловая система...
Проверить, содержит ли окно набор Unicode символов

Оформил: DeeCo
Автор: http://www.swissdelphicenter.ch

{ 
  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;
Проект Delphi World © Выпуск 2002 - 2024
Автор проекта: USU Software
Вы можете выкупить этот проект.