Tagged Questions

taction is a generic action VCL component. It implements user commands across a range of different controls. It is defined in ActnList.pas unit.

learn more… | top users | synonyms

6
votes
1answer
142 views

Delphi XE - TRibbon actions always send focus to MainForm

When I place a TRibbon control on a form that is not the MainForm of the application, that TRibbon's actions (i.e. Cut, Paste) will always return focus to the MainForm after the action is executed. ...
4
votes
1answer
115 views

How can I change the behavior of an event handler based on which TAction triggered it?

I have some menu items where the action is this: procedure TMISMainFrm.ActiSalesInvoiceExecute(Sender: TObject); begin if CheckMdiList('Sales Invoice') then BEGIN SalesInvFrm := ...
4
votes
3answers
242 views

How do I add support for actions in my component

What do I need to do for adding actions support to my component. It is a button component but I guess it is the same for whatever component type it is. Any information or how to will help.
3
votes
2answers
265 views

Delphi: disable 1 Action from Action List

It is funny :) but how to do something like ActionList1.MyAction.Enable:=false? An Action List has actions for buttons, if a button is invisible I need to disable it's action (if not to do this and ...
3
votes
2answers
361 views

How can I create a most recently used file list in Delphi 2009?

I have an TActionManager, and a TActionMainMenuBar, and I know how to add an TActionClientItem for each MRU file to the main menu bar. But do I have to create a separate action for each MRU file in ...
2
votes
3answers
166 views

How to make subcomponent TAction-s available at design time?

In my custom component I created some TAction-s as subcomponents. They're all published, but I could not assign them at design time since they were not available through object inspector. How do you ...
2
votes
1answer
118 views

How to add a drop down menu to an Action Item at Runtime

I'm using the following method to create a an ActionClient with an Action at run time. procedure TMainForm.AddToProjectHistory(Path: string); var NewOption: TAction; ActionClient: ...
2
votes
3answers
354 views

Delphi idle handler only fires when I move the mouse

I have an OnIdle handler in my D2006 app. With this code: procedure TMainForm.ApplicationEvents1Idle(Sender: TObject; var Done: Boolean); begin Inc (IdleCalls) ; Sleep (10) ; Done := False ; end ; ...
2
votes
3answers
551 views

How can I handle a keyboard shortcut when my program isn't active?

Is it ok if i use it like this..for multiple events? unit Unit4; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Clipbrd; type TForm4 = ...
2
votes
2answers
559 views

Creating a Delphi app shortcut with no corresponding menu item

I want to have a shortcut key combination (like Ctrl+Alt+D) in my app to invoke a function, but I don't want the shortcut to appear on any menu. Is it possible to have a shortcut available in your ...
2
votes
5answers
516 views

How can I see who triggered an action in Delphi?

When an action even fires, the "sender" is always the action itself. Usually that's the most useful, but is it somehow possible to find out who triggered the action's onexecute event? Example Let's ...
2
votes
2answers
1k views

Delphi: How to Assign an Up Arrow Keyboard Shortcut to Action/MenuItem, and Keep It Actual for Navigating the List Control (ListBox/VTV)?

Please assist me: How to assign an up arrow keyboard shortcut to action or menu item, and keep it actual for navigating the list control (e.g. ListBox/Virtual Treeview/other) at the same time? ...
2
votes
3answers
579 views

Secondary Shortcut does not fire

I am using Delpho 2006. The Scenario: On the data module I have an ActionList. One of the actions has a shortcut Ctrl+F4 and I want to have a secondary shortcut Ctrl+W. I tried all of the following: ...
2
votes
3answers
1k views

Delphi: How do I stop TAction shortcut keys autorepeating?

I'm using a Delphi TActionList, with Shortcut Keys for some actions. I want to prevent certain actions from being triggered multiple times by keyboard auto-repeat, but I do not want to affect ...
2
votes
2answers
1k views

Execute action for automatically unchecked button in Delphi

I have one action I want to perform when a TSpeedButton is pressed and another I want to perform when the same button is "unpressed". I know there's no onunpress event, but is there any easy way for ...
1
vote
1answer
117 views

Delphi: image of Action doesn't appear on Tool Button

All is on a frame. I have an action list, there is an action with an image, the image appears in the action. I have assigned the action to a tool button but the image doesn't appear on it. Why? ...
1
vote
1answer
142 views

Delphi ActionMainMenuBar MRU

I am trying to add an MRU list to an ActionMainMenuBar but cannot figure out how to do this, could someone please either point me to a MRU component that works with ActionMainMenuBar or perhaps tell ...
1
vote
1answer
322 views

How do I programatically add actions to an Action Manager in Delphi 2010

I am trying to dynamically add actionitems, I can add the item and it works when I do this: HostActionItem := ActionManager.ActionBars[0].Items[0].Items[2]; NewItem := HostAction.Items.Add; ...
1
vote
2answers
238 views

From TCheckListBox to TcxCheckListBox with an exception?

I use this code with TCheckListbox (lbServices) and it works fine. But with TcxCheckListBox from Devexpress it raise exception. procedure TMaintenanceForm.AfterConstruction; var i: Integer; ...
1
vote
1answer
205 views

Delphi 2009 Actionmanager default Imagelist

I have just started a new project, and I am using the Delphi 2009 Actionmanager component for the first time. The Actionmanager has a list of standard actions, which gives me actions such as File ...
1
vote
3answers
389 views

extending the delphi TEditCopy action to also copy listbox items to clipboard

I have a form with most of its functionality implemented using standard TAction. I have a menu, a toolbar, and some toobuttons. I have implemented clipboard copy/paste with no code at all, just using ...
1
vote
1answer
365 views

How to access the checked property of a Delphi 2009 ribbon button on runtime?

I want to reset the "checked" property of all TAction objects of a ribbon to false when clicking on any ribbon button and then only set it true on the pressed button. But I did not yet find a way to ...
0
votes
2answers
145 views

TAction radio item

In action bands there is a TAction component. That component holds a property named GroupIndex: Integer; however the field RadioItem: Boolean; is not there. Why is that? How can I make a ...
0
votes
2answers
144 views

Is there a way to override previous registred actions with a shortcut?

I have a unit with a lot of actions, some actions have shortcuts and some have even the same shortcut. This is because they belong to different modules in applications and they are not in context at ...