Недавно добавленные исходники

•  TDictionary Custom Sort  3 227

•  Fast Watermark Sources  2 992

•  3D Designer  4 751

•  Sik Screen Capture  3 259

•  Patch Maker  3 469

•  Айболит (remote control)  3 529

•  ListBox Drag & Drop  2 904

•  Доска для игры Реверси  80 795

•  Графические эффекты  3 843

•  Рисование по маске  3 172

•  Перетаскивание изображений  2 544

•  Canvas Drawing  2 674

•  Рисование Луны  2 501

•  Поворот изображения  2 094

•  Рисование стержней  2 121

•  Paint on Shape  1 525

•  Генератор кроссвордов  2 183

•  Головоломка Paletto  1 731

•  Теорема Монжа об окружностях  2 159

•  Пазл Numbrix  1 649

•  Заборы и коммивояжеры  2 017

•  Игра HIP  1 262

•  Игра Go (Го)  1 201

•  Симулятор лифта  1 425

•  Программа укладки плитки  1 178

•  Генератор лабиринта  1 512

•  Проверка числового ввода  1 297

•  HEX View  1 466

•  Физический маятник  1 322

•  Задача коммивояжера  1 357

 
скрыть


Delphi FAQ - Часто задаваемые вопросы

| Базы данных | Графика и Игры | Интернет и Сети | Компоненты и Классы | Мультимедиа |
| ОС и Железо | Программа и Интерфейс | Рабочий стол | Синтаксис | Технологии | Файловая система |



Delphi Sources

Проверить, содержит ли окно набор Unicode символов



Оформил: DeeCo

{ 
  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;




Похожие по теме исходники

Блокнотик

Unicode to String




Copyright © 2004-2024 "Delphi Sources" by BrokenByte Software. Delphi World FAQ

Группа ВКонтакте