tagged [progress-bar]
Running a method in BackGroundWorker and Showing ProgressBar
Running a method in BackGroundWorker and Showing ProgressBar What I want is when some method is doing some task UI keeps itself active and I want to show the progress of the work in a progress-bar. I ...
- Modified
- 27 Jul at 19:30
Winforms Updating UI Asynchronously Pattern - Need to Generalize
Winforms Updating UI Asynchronously Pattern - Need to Generalize Setup: Main MDI form with a progress bar and a label. ``` public delegate void UpdateMainProgressDelegate(string message, bool isProgre...
- Modified
- 27 Aug at 07:35
Reporting RPC call progress
Reporting RPC call progress I am developing an API server using the ServiceStack library on .NET 3.5 (a new experience for me), designed to be accessed by a Windows Forms thick client application. Whe...
- Modified
- 12 Feb at 04:23
How to use WinForms progress bar?
How to use WinForms progress bar? I want to show progress of calculations, which are performing in external library. For example if I have some calculate method, and I want to use it for 100000 value...
- Modified
- 26 Aug at 15:9
Progress Bar and File Copying Problem?
Progress Bar and File Copying Problem? Using VB 6 In my Project, when I copy the file from one folder to another folder, at the time I want to show the progress bar like copying…., Once the file was c...
- Modified
- 19 Aug at 13:32
How can we show progress bar for upload with FtpWebRequest
How can we show progress bar for upload with FtpWebRequest I am uploading files to ftp using `FtpWebRequest`. I need to show the status that how much is done. So far my code is: ``` public void Upload...
- Modified
- 29 Aug at 06:21
How to Create a circular progressbar in Android which rotates on it?
How to Create a circular progressbar in Android which rotates on it? I am trying to create a rounded progressbar. This is what I want to achieve There is a grey color background ring. On top of it, a ...
- Modified
- 8 Jan at 09:34
C# Winform ProgressBar and BackgroundWorker
C# Winform ProgressBar and BackgroundWorker I have the following problem: I have a Form named MainForm. I have a long operation to be taken place on this form. While this long operation is going on, I...
- Modified
- 29 Mar at 11:49
How to show an informative real time progress data during long server process
How to show an informative real time progress data during long server process I have a so long process may take 1 hour . This process consists of many steps run from year to year .My main problem is :...
- Modified
- 31 May at 09:9
File Copy with Progress Bar
File Copy with Progress Bar I used this code: ``` using System; using System.Collections.Generic; using System.ComponentModel; using System.Windows.Forms; using System.IO; namespace WindowsApplication...
- Modified
- 10 Aug at 05:48
Displaying a progressbar while executing an SQL Query
Displaying a progressbar while executing an SQL Query I want to inform the user while data is being read from an SQL database and I decided to create a form with a progressbar but it doesn't work - ma...
- Modified
- 28 Feb at 11:49
WPF C# - Update progressbar from another thread
WPF C# - Update progressbar from another thread I'm stuck trying to update a progressbar from other threads ran in a different class. To explain what I do I think a picture will be better. I want to u...
- Modified
- 13 Apr at 23:10
Custom Drawable for ProgressBar/ProgressDialog
Custom Drawable for ProgressBar/ProgressDialog Reading the limited documentation that Google has provided, I get the feeling that it is possible to change the look (drawable) of a ProgressBar/Progress...
- Modified
- 15 Mar at 20:4