Click here to Skip to main content
15,887,924 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi every one I'm doing project based on client server architecture,client and server connect via web service application.

client side user can send the data to server side after processing inside server result send back to the client but problem is i want set progress bar until result display by client side
how i put progress bar to client application side if you have some code or help it's very much for me

(client application is windows form application)
Posted

You could always try using a Progress Bar[^].
 
Share this answer
 
As per my understanding you want to show a progressbar to user.

1) How you sending the files onto server? Chunk by chunk?

If no then you need to send a file chunk by chunk so you can design a progress bar.

Or you can send/receive the files onto server with the help of WebClient class[^]
These are the Events of WebClient class will help you to design a progress.
webclient.downloadfilecompleted[^]
webclient.uploadfilecompleted[^]
webclient.downloadprogresschanged[^]
webclient.uploadprogresschanged[^]

These are some question & answer on Webclient Progressbar.
http://www.dreamincode.net/forums/topic/115491-download-file-asynchronously-with-progressbar/[^]
http://social.msdn.microsoft.com/forums/en/netfxnetcom/thread/13b78a45-3b77-4dbf-b0a5-41911a33c49e/[^]
http://stackoverflow.com/questions/4172158/c-sharp-progress-bar-and-webclient[^]

Hope this helps :)
 
Share this answer
 
Comments
chamara54 17-Nov-12 22:30pm    
Thanks you very much :)
Sushil Mate 18-Nov-12 23:11pm    
you are welcome

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900