[SOLVED] Application.Update(this) Question

Answered
0
0

When I need to use Application.Update(this) – Should I replace “this” with the control I want to update – for example a panel that has a bunch of text boxes that I just updated from another thread ?

When I say Application.Update(this) in a form – does it flush all the updates for the entire form ?

  • You must to post comments
Best Answer
0
0

Any IWisejComponent will work. All it needs is a reference to find the session and it will flush all the updates on all components back to the client.

You can also save the application instance Application.Current and use that reference when calling Application.Update(component);

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.