Friday, 11 March 2016

send value from one form to another

1.on First Form
      
             New_POS.frm_updatetax fc = new frm_updatetax();
            fc.Tax_Id = TextBox1.Text;
            fc.Show();

2. On Second Form

            Public string Tax_Id ;
           TextBox1.Text=Tax_Id ;

No comments:

Post a Comment