how can i link windows forms in c# coz am failingg to do this
Hi Andymuggie
Do you mean you want to lunch another application in your application? I think you can use Process to do this. Here is an easy example.
Code Snippet
process = new Process();
"C:\\AnotherApp.exe";
in this example, you will start another application on your disk.
If I have misunderstood you, please don’t hesitate to tell me.
Sincerely,
Kira Qian
Windows Forms General FAQsWindows Forms Data Controls and Databinding FAQs