Im new to eclipse rcp.
Context:
Im performing a login operation using eclipse rcp, i’v cretead a view which accepts username and password from the user and when user clicks on Login Button the code checks against the database and if valid a new view is shown to the User else shows error invalid login.
So here in the above i desperately wanted to show a progress bar(that waits for sometime) while its checking against the database in the background.
can i know how to achieve that ?
You can use ProgressMonitorDialog to achieve what you want. Here’s a tutorial on how to use it.