I need a way to refresh a form so that it executes all code in the constructor, I've tried with Form.Refresh(), this.Invalidate(), and even Form.Reload().. Still doesen't run as it does the first time I start the application, is there an easy way to do this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
The constructor can't be executed twice. You can build a workaround by putting your constructor's code in a method and calling it when it's needed. Example:
|
|||||||||
|