Is there some way to display a progress or wait message while data is loading into a grid? I saw that there is a UseWaitCursor, but that did not seem to work as it always used the wait cursor even if data was not loading.
Thanks.
You might need to put the loading of data into the grid into a background worker process. Then you can use the enquire Progress Bar tool and enquire of the background working to update the progress.
Here is one example of this occuring, but insteadof using the Progress Bar tool, they have simply output a string of the percent complete.
http://ms-dotnet.blogspot.com/2006/03/backgroundworker-threads_08.html
Hope this helps.
Jason