vote up 0 vote down star

Hi

We have TToolbarButton(s) on a toolbar, each with it's own associated TPopupMenu. The popup menus are all the same so we would like to have only one menus for all the toolbar buttons. The problem I have is determining which ToolbarButton invoked the popup menu.

I've tried the following, but I keep getting an access violation.

...

with (Sender as TPopupMenu) do
  ShowMessage((GetParentComponent as TPopupMenu).Name);

...

Any ideas how to get the parent of the popup menu?

Thanks, Pieter.

flag

Menus don't have parents. You ay want the component associated with the menu, but there's no parent-child relationship involved. – Rob Kennedy May 9 at 14:53

1 Answer

vote up 5 vote down check

Try

  with (sender as  TPopupMenu)  do
      ShowMessage(PopupComponent.Name);

That should give you the TToolButton that was pressed.

link|flag
Unfortunately PopupComponent.Name returns the Toolbar name and not the ToolbuttonName. It works ok on a ListBox. Pieter. – Pieter van Wyk May 10 at 7:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.