Click here to Skip to main content
15,881,882 members
Articles / Desktop Programming / ATL

ATL COM Based Addin / Plugin Framework With Dynamic Toolbars and Menus

Rate me:
Please Sign up or sign in to vote.
4.86/5 (35 votes)
9 Dec 20043 min read 164.3K   3.2K   96  
An article on ATL COM Based Addin / Plugin Framework With Dynamic Toolbars and Menus, based on VC++ Addin Architecture.

<ProjectFrameworkAddin>
	<AppVer>2</AppVer>
	<AddinName> Report Addin </AddinName>
	<ToobarButtonCount> 3 </ToobarButtonCount>	
	<MainMenu>
		<Name>Addin21 Menu</Name>
			<SubMenu>
				<Name>Submenu name </Name>		
				<LeafMenu>
					<Name>Leafmenu 1</Name>
					<FunctionName> Function2 </FunctionName>
					<HelpString> Some status bar Help Desc</HelpString>
					<ToolTip> Tooltip Desc 1 </ToolTip>
					<ToolBarIndex> 2</ToolBarIndex>
					<ShortCutKey> Ctrl+A </ShortCutKey>	
				</LeafMenu>
				
				<LeafMenu>
					<Name>Leafmenu 2</Name>
					<FunctionName> Function3 </FunctionName>
					<HelpString> Some status bar Help Desc</HelpString>
					<ToolTip> Tooltip Desc 1 </ToolTip>
					<ToolBarIndex> 2</ToolBarIndex>	
				</LeafMenu>

			</SubMenu>

	</MainMenu>
	
	<MainMenu>
		<Name>Addin22 Menu</Name>
			<SubMenu>
				<Name>Submenu name </Name>
				<SubMenu>
					<Name>Submenu name </Name>
					<LeafMenu>
						<Name>Leafmenu 1</Name>
						<FunctionName> Function3 </FunctionName>
						<HelpString>Status bar Help Desc</HelpString>
						<ToolTip> Tooltip Desc 1 </ToolTip>
						<ToolBarIndex> 2</ToolBarIndex>	
					</LeafMenu>
				</SubMenu>
				
			</SubMenu>

	</MainMenu>
	
</ProjectFrameworkAddin>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Chief Technology Officer KTS INFOTECH PVT LTD
India India
->9+ Years of Experience in IT Field.
->Basically a C++ Programmer migrating to .NET
->Have Masters degree in Physics and Computer Scince.
-> Doing his Ph.D(Part Time) in Optical Networking)
->Interests: Software product development,Networking, Robotics,Sports Physics, Learning musical instruments, Cricket.

->Resides in kerala ,the gods own country, with his mother and wife.

Home page


Comments and Discussions