I have a network application
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I have a network application. These two application has a form on which two label controls are present. Please see the diagram... Host1 Host2 Form1.cs Networkoperation.cs Form1.cs Networkoperation.cs class actually handles the communication between the two applications. What I Want? I want to have button on each form If I click the button the text present in a textbox on the form has to go the same label control and should be assigned to the Text property of the control. I am unable to do this, Because how to get the handle of label control of form1.cs class in networkOperation.cs Class? Any one who knows it Please help to me.