This repository has been archived on 2026-05-12. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
TheCoolCat/AAAAAAAAAAAAA/Agreement.vb
2023-09-22 20:50:26 -03:00

14 lines
No EOL
453 B
VB.net

Public Class Agreement
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If My.Settings.Immune = True Then
Me.Close()
End If
If CheckBox1.Checked = True Then
MainForm.Show()
Else
MessageBox.Show("You are an idiot? you can't use the app without accepting", "", MessageBoxButtons.OK)
End If
End Sub
End Class