Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to create an item in a TActionMainMenuBar at runtime Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
06-Feb-04
Category
Others
Language
Delphi 2.x
Views
184
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Jonas Bilinkevicius

How to create an item in a TActionMainMenuBar at runtime

Answer:

1   { ... }
2   var
3     iItem: TActionClientItem;
4     iAction: TAction;
5   begin
6     iAction := TAction.Create(myActionManager); {Create the Action for the item}
7     iItem := myActionManager.ActionBars[0].Items.Add; {Add item to menu with the 
8   index 0}
9     iAction.Caption := 'My Item';
10    iItem.Action := iAction; {Assign Action to the item}
11  end;


To create a submenu item, do:

12  { ... }
13  var
14    iItem: TActionClientItem;
15    iAction: TAction;
16  begin
17    iAction := TAction.Create(myActionManager);
18    iItem :=
19      
20  myActionManager.ActionBars[0].Items[MyFirstMenu].Items[MyFirstSubmenu].Items.Add;
21    iAction.Caption := 'My item in the submenu';
22    iItem.Action := iAction;
23  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC