I've created a process where I can't really use the Show / Hide function of forms. That's why I am using a Showdialog at the moment.
The code I am using to create the next form (and close/dispose the next one) is:
Private Sub btnControle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnControle.Click
Try
Dim frmlocatie As New frmLocatie
Me.Close()
Me.Dispose(True)
frmlocatie.ShowDialog()
Catch ex As Exception
MessageBox.Show(ex.ToString)
End Try
End Sub
In my application, I have to be able to reach one of the 7 forms from anywhere. Some extra info about the applicaiton: We have to choose a location, choose sublocation, choose room, and then choose the item. And from within every of those forms, we can click on 'location' for example and choose another one.
My main problem at the moment is, that after about 20 forms open+close, the system gives an error on a random form (while building it) and is saying: StackoverflowException was unhandled: An unhandled exception of type 'System.StackoverflowException' occured.
I think that this is because of a memory issue of the scanner, and that it didn't closed the forms correctly. (even with close + dispose)
Any help is greatly appreciated.
EDIT: Based on the comments I used the Call Stack, see Image below.
I also tried the other comment and catched the error:
?ex.ToString
"System.StackOverflowException: StackOverflowException
bij Microsoft.AGL.Forms.WL.SetPos()
bij System.Windows.Forms.Control._SetBoundsCore()
bij System.Windows.Forms.Control.set_Size()
bij OpenNETCF.Windows.Forms.BatteryLife..ctor()
bij BradyPDT.frmLocatie.InitializeComponent()
bij BradyPDT.frmLocatie..ctor()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLocatie.lblLocatie_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.LinkLabel.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmMain.btnControle_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterModalDialog()
bij System.Windows.Forms.Form.ShowDialog()
bij BradyPDT.frmLogin.btnNext_Click()
bij System.Windows.Forms.Control.OnClick()
bij System.Windows.Forms.Button.OnClick()
bij System.Windows.Forms.ButtonBase.WnProc()
bij System.Windows.Forms.Control._InternalWnProc()
bij Microsoft.AGL.Forms.EVL.EnterMainLoop()
bij System.Windows.Forms.Application.Run()
bij BradyPDT.frmSplash.Main()
"