Hi,
I'm a new programmer, and have a small problem. I've been trying to get a form populated with lots of buttons and tabs to be refreshed when its child form is closed. The routine I have is this:
	If I understand correctly, the parent form code should pause until NewForm_View is Closed (or should it be Disposed?), and when it does it should be refreshed and the buttons updated - but it isn't. Do I need to run an Invoke routine?
*edit: Just to be clear, the buttons are populated within the parent form's private void Parent_form_Loa d(object sender, EventArgs e) command.
Hope you can help, many thanks, Howard Parker
					I'm a new programmer, and have a small problem. I've been trying to get a form populated with lots of buttons and tabs to be refreshed when its child form is closed. The routine I have is this:
Code:
	NewForm_View show_it = new NewForm_View(); show_it.ShowDialog(); Form.ActiveForm.Refresh();
*edit: Just to be clear, the buttons are populated within the parent form's private void Parent_form_Loa d(object sender, EventArgs e) command.
Hope you can help, many thanks, Howard Parker
Comment