Hi I have a base form that subsequent forms are inherited from. It is a form that is designed to have an appropriate look and feel and really doesn't do anything else. The other froms just inherit it as per:
public partial class frmLoad : frmPeakBase
The only other thing that I have done on the frmPeakBase is the following:
public partial class frmPeakBase : Form
{
public PPCustomMessageBox.Question PQ = new PPCustomMessageBox.Question();
public frmPeakBase()
{
InitializeComponent();
}
}
Which just creates a reference to a custom message box.
The problem that I am facing is that every time that I load a form that is inherited from the frmPeakBase the message box automatically starts and you have to Alt f4 to close it. This is when it is still in design mode within VS. Any ideas?
Thanks
--Taylby