0
I need help, I have a Vb.net game in which I want the firstrun of the program to open a form to put the nick and has a mini tutorial etc, and after firstrun the startup form changes to the game, without appearing the form to put the nick.
I’ve tried to do:
Private Sub Inicio_Load(sender As Object, e As EventArgs) Handles MyBase.Load
If My.Settings.FirstRun = True Then
My.Settings.FirstRun = False
My.Settings.Save()
ElseIf My.Settings.FirstRun = False Then
Dim Inicio As Inicio
Inicio = New Inicio
Inicio.Hide()
Dim Form1 As Form1
Form1 = New Form1
Form1.Show()
End If
End Sub
End Class
But the main form (Start) appears together with Form1