How to referesh a winform
there is a from called mainform there is a button update when i click on button a popup window open and update some text after closing this popup window this text should be show in mainform textbox. how to solve in C#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Anshuman SharmaPosted Oct 11, 2014, 5:12 AM
popupForm frm = new popupForm ();
frm.showdialog();
textbox1.text=frm.value;
Munesh SharmaPosted Oct 11, 2014, 5:15 AM
Munesh SharmaPosted Oct 11, 2014, 5:08 AM
Anshuman SharmaPosted Oct 11, 2014, 5:07 AM
is it a new form.?