.NET
dcompile.txt
Associated article: Dynamic Compilation, Reflection, & Customizable Apps
Tags: .NET Design
Published source code accompanying the article by by David B. Scofield and Eric Bergman-Terrell in which they show how to develop apps that offer user-created toolbar buttons and menu items that launch custom features. Also see DCOMPILE.ZIP.
Dynamic Compilation, Reflection, & Customizable Apps
by David B. Scofield and Eric Bergman-Terrell
Example 1:
public class HelloToolbarButton : CustomToolBarButton
{
public HelloToolbarButton()
{
Text = "Hello World";
ToolTipText = "Display Hello World Message";
}
public override Image GetImage()
{
return new Bitmap("...


