Einzelnen Beitrag anzeigen

CalganX

Registriert seit: 21. Jul 2002
Ort: Bonn
5.403 Beiträge
 
Turbo Delphi für Win32
 
#3
  Alt 11. Jun 2003, 15:20
Bessere Idee:
Form1.Keypreview auf true
Globale Variable: AbIns: boolean;
Im OnKeydown des Forms:
Delphi-Quellcode:
if (key = vk_Insert) then not AbsIns;
if AbsIns then StatusBar1.Panels[1].Text := 'Einfg'
else {...}
  Mit Zitat antworten Zitat