Dear Friends,
How can I go from one C#.Net form to another form in a desktop application.
I know in ASP.NET as Response.Redirect(...)
But I don't know how to do that in desktop application. Please help.
Rajib
Printable View
Dear Friends,
How can I go from one C#.Net form to another form in a desktop application.
I know in ASP.NET as Response.Redirect(...)
But I don't know how to do that in desktop application. Please help.
Rajib
The answer depends on a few things.. is this form in your project? If so, then you should read this tutorial:
http://www.devcity.net/Articles/94/1/multipleforms.aspx
(Which is in VB, but easily converted to C#)
If it's another program, you need to look into the FindWindowEx API function, and a few others.
Bill
Ok, I have done it.