up vote 0 down vote favorite
share [g+] share [fb]

I'm building a winform in C# with various elements in a panel that start out either invisible, disabled, or set to null (labels, combo boxes, grids, etc.). As the user goes through and makes choices, these elements are populated, selected, etc.

The idea is to upload files, read them, and process entries to a database. Once the processing for this directory has completed, I'd like to be able to have the user select another directory without exiting and restarting the winform app, by pressing a button that becomes visible when the process has completed.

Is there an easy call to reset the application (or the panel that contains the elements), similar to when a webform is refreshed, or do I have to write a function that "resets" all of those elements one at a time?

EDIT: As the result of a development meeting, my project has changed direction. I thank the two of you who helped with answers, and am going to close the question.

link|improve this question
Hi. The answer to this question has pointed me to a solution that solved one of my problems. Maybe you should re-open this as it might not be relevant to you, it might be releavant to other people. – MrValdez May 22 '09 at 8:00
feedback

closed as off topic by John Dunagan Dec 4 '08 at 20:43

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 2 down vote accepted

Simple remove panel from the form and create the new one.

EDIT: Sample:

Panel CreatePanelWithDynamicControls() {
    Panel ret = new Panel();
    ret.Dock = DockStyle.Fill;
    // some logic, which initialize content of panel

    return ret;
}

void InitializeDynamicControls() {
    this.Controls.Clear();
    Panel pnl = this.CreatePanelWithDynamiControls();
    this.Controls.Add( pnl );
}

void Form1_Load( object sender, EventArgs e ) {
    if ( !this.DesignMode ) {
        this.InitializeDynamicControls();
    }
}

// I don't know exactly, on which situation
// do you want reset controls
void SomeEvent( object sender, EventArgs e ) {
    this.InitializeDynamicControls();
}
link|improve this answer
I'm trying this - I think it might work. If it does, I'm marking you Best Answer. – John Dunagan Dec 3 '08 at 17:19
It completed, but it didn't reset the elements in the TabPage, and it put it at the end. I may have to enclose all of the elements in another panel, and then remove and add just the panel(s). – John Dunagan Dec 3 '08 at 17:50
This was almost there, so in the spirit of not seeing that annoying red message, I'm marking it best. – John Dunagan Jan 9 '09 at 15:10
feedback

You could try calling this.InitializeComponent(), which may do the trick. Alternately, if your application has a 'Directory Select' form and a 'Process Files' form, you could have the Directory Select form do a "new" on the Process Files form, which should return it to its original state (not while its open, though).

link|improve this answer
It threw an error because (I think) the button calling it was not the object to re-initialize. – John Dunagan Dec 3 '08 at 17:18
If you're on a form, and you call 'this', it should refer to the form. What error? – GWLlosa Dec 3 '08 at 18:22
Maybe that's my problem. It turns out, however, that as the result of a development meeting, they want the datagrid to persist so that records can be added, so I can't reinit the tabpage panel. Thanks, anyway. – John Dunagan Dec 4 '08 at 20:42
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.