I am writing a Windows Forms application in VB.NET. I have three forms: the main form, which shows a list of accounts, the account form which allows the user to view/edit the in
try using ShowDialog()
Dim newForm as New AcctForm newForm.Location = Me.Location newForm.ShowDialog() Me.Close() <-- removed this