I am using Visual Studio 2010 and C#.Net for developing a windows application which have 2 parts, one part is used for accepting some data through one form namely Form1 and updating the data in the Database. The second part is used to display the inserted data and which will be shown on the other form namely Form2 (A MDI container). Both the form will on different system connected to each other. The problem is to navigate the Form2 from Form1 i.e How can I access the Form2 from Form1. Eg. Clicking a button on Form1 displays or hides a child Form in Form2(as it is a MDI container) or similar kind of access.
Can anyone please help me in this issue and provide some easy way of accessing these forms remotely..