When I first started programming with VB6, seems like the most popular way to load another form from within a form would be:
form2.visible = true
But lately I have seen a lot of people using:
form2.show
What is the main difference between these? And which is the preferred method?
Thanks.
form2.visible = true
But lately I have seen a lot of people using:
form2.show
What is the main difference between these? And which is the preferred method?
Thanks.