Although I'm tempted to say "As many as you want", I suspect there is more
to the question than meets the eye. Are you asking about Windows forms or
web forms? Please provide some context for your question. If we had more
information on the problem you're trying to solve, better, more specific
answers could be provided.
About the same as in VB.Net. However in fact that is not so important in my
opinion because in use it is only limited by the memory of the user
computer, which will probably for a long time in future not be enough to
hold all the forms you could be able to show.
If you want to test it, on your own computer than open a new project and
past this in the code. Run it in debug mode and see what the count is when
it stops..
Friend Class form2
Inherits System.Windows.Forms.Form
End Class
Private Sub Form1_Load(ByVal _
sender As System.Object, ByVal e As System.EventArgs) _
Handles MyBase.Load
Dim count As Integer
Do
Dim frm As New form2
count += 1
frm.Show()
Loop
End Sub
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.