Quote Originally Posted by weirddemon View Post
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:
  1. Public Class OutterClass
  2.  
  3.   Private m_InnerClass As InnerClass
  4.  
  5.   Public Sub New()
  6.     m_InnerClass = New InnerClass
  7.   End Sub
  8.  
  9.   Private Class InnerClass
  10.     Public Sub New()
  11.     End Sub
  12.   End Clas
  13.  
  14. End Class

Quote Originally Posted by The_Virus_TCH View Post
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.