Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.04.25;
Скачать: CL | DM;

Вниз

VCL: (ssCtrl in shift); KOL: ?   Найти похожие ветки 

 
Revolter   (2003-09-17 15:05) [0]

в VCL обработчик события нажатие клавиши Ctrl: (ssCtrl in shift), а как в KOL?


 
Gandalf ©   (2003-09-20 10:31) [1]

Можно так:

procedure TForm1.ListBox1KeyDown(Sender: PControl; var Key: Integer;
 Shift: Cardinal);
begin
 if (Shift and 4)=4 then
 begin
   ListBox1.Items[0]:="Shift +";
 end
 else
 begin
   ListBox1.Items[0]:="Shift -";
 end;

 if (Shift and 8)=8 then
 begin
   ListBox1.Items[1]:="Ctrl +";
 end
 else
 begin
   ListBox1.Items[1]:="Ctrl -";
 end;

 if (Shift and 32)=32 then
 begin
   ListBox1.Items[2]:="Alt +";
 end
 else
 begin
   ListBox1.Items[2]:="Alt -";
 end;

end;


 
Revolter   (2003-09-20 18:46) [2]

как сложно, однако..

спасибо


 
Gandalf ©   (2003-09-20 20:14) [3]

На самом деле можешь скажем сделать так:

TShiftStates=(ssRes1,ssRes2,ssShift,ssCtrl,ssRes3,ssAlt);
TShiftState=set of TShiftStates;

Ну и привидя тип TShiftState(Shift) можешь работать как с множеством.

(ssCtrl in TShiftState(shift))



Страницы: 1 вся ветка

Текущий архив: 2004.04.25;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.292 c
1-1081333765
Samael6
2004-04-07 14:29
2004.04.25
Acrobat Reader GetVersion()


8-1074543211
hagen
2004-01-19 23:13
2004.04.25
flash и дельфи


1-1081310776
Russko
2004-04-07 08:06
2004.04.25
Местонахождения исполняемого файла


1-1081241753
Openfire
2004-04-06 12:55
2004.04.25
Вопрос про экспорт данных в MSWord


4-1077345889
Костя
2004-02-21 09:44
2004.04.25
ExitWindowsEx