Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Popup Itemīs in Runtime erzeugen ? (https://www.delphipraxis.net/7426-popup-item%B4s-runtime-erzeugen.html)

bundy 12. Aug 2003 07:56


Popup Itemīs in Runtime erzeugen ?
 
Hallo Leute !

Wie kann ich bei einem POPPUP zu Laufzeit ein Item hinzufügen ? :bouncing4:



DAnke im Voraus :cat: :love:

neolithos 12. Aug 2003 08:04

Re: Popup Itemīs in Runtime erzeugen ?
 
Delphi-Quellcode:
var f : TPopupMenu;

  f.Items.Add(NewItem('Caption', 0, // Shortcut
    false, // Checked
    true, // Enabled
    MenuClick, // TNotifyEvent
    0, // HelpCtx
    '' // Componenten-name
    ));


procedure T???.MenuClick(Sender : TObject);
begin
  DoSomething;
end;
neben Add gibt es auch noch Insert.

mehr in der Delphi Hilfe under TMenuItem

bundy 12. Aug 2003 08:07

Re: Popup Itemīs in Runtime erzeugen ?
 
hey danke :love: :wall: :love:


Alle Zeitangaben in WEZ +1. Es ist jetzt 10:43 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz