This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
Keith @ Killa Network edeb684560 Added XBox support
2015-11-05 18:54:13 +11:00

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