Working Message in taskbar

  • Thread starter Thread starter axapta
  • Start date Start date
A

axapta

Hi Group,
I've got a search screen whereby it could take a couple of seconds or
minutes for the results to be returned. Is there a way to place a "working
message" in the taskbar area, so the user can see that it is doing
something? I did this years ago in MS Access. Should be able to do this in
..NET.

I'm querying a SQL database using a DA.

Thanks
 
Hi Group,
I've got a search screen whereby it could take a couple of seconds or
minutes for the results to be returned.  Is there a way to place a "working
message" in the taskbar area, so the user can see that it is doing
something? I did this years ago in MS Access.  Should be able to do this in
.NET.

I'm querying a SQL database using a DA.

Thanks

1) Spawn the search on a thread separate from the UI.
2) Show whatever you want on the form while the search is in process
3) When the search is over, remove the "wait content" and replace it
with the search results.

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
 
axapta said:
I've got a search screen whereby it could take a couple of seconds or
minutes for the results to be returned. Is there a way to place a
"working message" in the taskbar area, so the user can see that it is
doing something? I did this years ago in MS Access. Should be able
to do this in .NET.

I think that if you change the application's name that will be reflected in
the TaskBar:

http://bytes.com/forum/thread482730.html

Andrew
 
Thanks for your replies but it still does not help. I'm after some code
samples.

Regards

Hi Group,
I've got a search screen whereby it could take a couple of seconds or
minutes for the results to be returned. Is there a way to place a "working
message" in the taskbar area, so the user can see that it is doing
something? I did this years ago in MS Access. Should be able to do this in
.NET.

I'm querying a SQL database using a DA.

Thanks

1) Spawn the search on a thread separate from the UI.
2) Show whatever you want on the form while the search is in process
3) When the search is over, remove the "wait content" and replace it
with the search results.

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top