When I want my program to show a new form I can either use:

Form1.Visible = True
or
Form1.Show

Both work interchangably in my program and seem to have the same effects on the data I was just wondering if one was better.

Thanks