So I have this two forms.. I have a command button on the second form that when I clicked, a message box pops out and ask you if you want to go in the first form. The 'Yes' worked but the 'No' doesn't work, the first form still shows.. can you help me guys.. thanks..
here's my code:
Public Class Form2
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MsgBox("FUCK I'M WASTED", MsgBoxStyle.YesNo)
If vbYes Then
Form1.Show()
Else
''''''''''''
End If
End Sub
End Class