Hi ebread,
As far as I know, there is few differences between creating a control derive from .Net Control and COM Control. In your case, you need to add a ToolboxItem attribute to the child control. This is the code snippet:
[ToolboxItem(true)]
public class RptControl : AxCExcel
{
}
You can ger more information about ActiveX control from:
http://msdn.microsoft.com/en-us/library/aa751972(VS.85).aspx.
Let me know if this helps.
Aland Li
Please mark the replies as answers if they help and unmark if they don't. This can be beneficial to other community members reading the thread.