No matter what I change it always shows 'Failed to initialize because CategoryName is missing.' I am trying to use a button on one form to open up another, but this keeps happening.
Private Sub BtnSCO_Click(sender As Object, e As EventArgs) Handles btnSCO.Click
Dim oForm As New BoogalooForm 'Boogaloo is the second form
oForm.Show()
End Sub