Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 2005 > C# 2005
|
C# 2005 For discussion of Visual C# 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 22nd, 2006, 10:27 AM
Authorized User
 
Join Date: Nov 2006
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to refresh owner form on closing of child form

hi
I have already open a form in mdiparent form. Now I open another form on click in childForm. I make some setting in the childForm.That effects my database. Now I want on closing of clildForm My parentForm updated automatically from database.

For this I am using my Code is this
//parentForm
butOpenSetting_Click(...)
{
         frmchildForm objchildForm = new frmchildForm();
            objchildForm.Owner = this;
            objchildForm.Show();
}

//childForm

butUpdate_Click(.....)
{
this.Owner.Refresh();
//this.Parent.Refresh();
this.close();
 }

but my Parent/Owner form are not refreshing.

Help me.




Thanks and Regards
Kumar Ashish
9350789189
__________________
Thanks
Kumar Ashish
[email protected]





Similar Threads
Thread Thread Starter Forum Replies Last Post
Reload Parent form from Child form maulik33 ASP.NET 2.0 Basics 2 February 6th, 2007 12:53 PM
parent form from child form - urgent plz netfresher C# 1 November 8th, 2006 06:59 PM
Closing a form after opening another form rosebushr Access 2 January 7th, 2006 04:34 AM
closing Form kobystud C# 4 July 1st, 2004 03:34 PM
Refresh form while updating linked form mfletch Access 0 February 26th, 2004 10:32 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.