Horje
how to pass value to anothe form c# winform Code Example
how to pass value to anothe form c# winform
// Form 1
// inside the button click event
using(Form2 form2 = new Form2()) 
{
    if(form2.ShowDialog() == DialogResult.OK) 
    {
        someControlOnForm1.Text = form2.TheValue;
    }
}
how to pass value to anothe form c# winform
form1 frm= new form1();
form1.getdata="some string to be sent to form1";




Csharp

Related
verifyusertokenasync password reset token Code Example verifyusertokenasync password reset token Code Example
c# multipthreading Code Example c# multipthreading Code Example
player movement script unity Code Example player movement script unity Code Example
asp.net issue Code Example asp.net issue Code Example
prime factor largest Code Example prime factor largest Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10