Transfering to another form
I don't know how to transfer from one form to another in a windows application.
I can't use server.transfer because the name space system.web is not on the list of namespaces inside the form.
Any ideas...Thanks...X
thanks...x
If you mean "how do I load another form?" then it's easy:
Dim frm As New YourForm()
frm.Show
That should at least get you started. There are fine points and options, as well, but this is enough code for the simplest case.