9 lines
241 B
VB.net
9 lines
241 B
VB.net
Public Class Form2
|
|
|
|
' We want to hide the form, not close it entirely.
|
|
Private Sub Form2_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
|
|
e.Cancel = True
|
|
Me.Hide()
|
|
End Sub
|
|
|
|
End Class |