
Originally Posted by
weirddemon
The point I was making was that you can't put a class in a class.
There's nothing you need to do. Create the class, build the project, add the toolstrip to the form, and add the checkbox like you would any other native child control.
Actually you can:
vb Code:
Public Class OutterClass
Private m_InnerClass As InnerClass
Public Sub New()
m_InnerClass = New InnerClass
End Sub
Private Class InnerClass
Public Sub New()
End Sub
End Clas
End Class

Originally Posted by
The_Virus_TCH
This is the error i get
Constructor on type 'System.Windows.Forms.ToolStripControlHost' not found.
See post #1, I've included an example project, the control as a class file & a screenshot for ya.