I need help, I have a game in vb.net where I want in the firstrun of the program to open a form that gives for the nick and has a mini tutorial etc, and after firstrun the startup form changes to the game, without appearing the form for 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 (Home) appears along with Form1