> Date: Fri, 06 Jan 2006 20:52:58 -0000 > From: "heromed" <[EMAIL PROTECTED]> >Subject: New TPopUpMenu event > >How can I add an additional event to TPopUpMenu which would be >executed when any of the MenuItems were clicked on, and would >return >the MenuItem that was selected ?
TMenuItem.OnClick(Sender : TObject) Its already there Procedure TForm1.ItemClick(Sender : TObject); begin if TMenuItem(Sender) = miFile then begin end; Send instant messages to your online friends http://au.messenger.yahoo.com ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

