1
vote
2answers
50 views

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. When the user clicks a button ...
0
votes
0answers
72 views

How to get compression progress using ICSharpCode.SharpZipLib

I have a problem reporting compression progress. I'm using ICSharpCode.SharpZipLib to compress a directory. Is there a algorithm to calculate the correct percentage of process of compression using ...
0
votes
1answer
230 views

Is there a built-in way of accessing shell file copy progress dialog from .NET 4.0?

In an old question I found a link to an article which explains how to get the standard Windows Shell file copy progress dialog for your own file copy operations: ...
5
votes
2answers
377 views

How can I eliminate the “jitter” from my “estimated time remaining” (and ETA) calculation?

I have an application that, while performing a background task, shows a progress bar with an "estimated time remaining" calculation (eg "5 seconds remaining") and a "estimated time of completion" (eg ...
1
vote
2answers
373 views

Display progress with discrete color fill of an image in silverlight

In Silverlight, I want to display progress of, for example, an uploading process as a sequence of incremental color fills on an image. For example, this is when progress is 0: this is when 30%: ...
8
votes
4answers
352 views

Wait task for x amount of time and report progress

I need a better design for sleeping Task than Thread.Sleep, I'm using the Task class. In my wpf app i run a Task, this task runs another couple of tasks, each of this tasks first login to and ...
1
vote
2answers
272 views

Run a batch of processes and report progress from each of them

I have a list of files to encrypt. The encryption is made by an external console application process reporting progress that has to be parsed. This progress has to be launched async ...
0
votes
1answer
34 views

Solution needed for outputting status of processed files with MVC 3

I have to functions for handling processing of files in a directory. One function reads and counts the files in the directory and foreach file it calls a function that does some action on that file. ...
1
vote
3answers
399 views

Progress getting incorrect value from backgroundworker

I'm new in c# and i'm still working way through and learning it all. I have made this code for a progress bar when downloading a file from ftp, and it actually working just fine. But progress value ...
4
votes
4answers
437 views

Show progress only if a background operation is long

I'm developing a C# operation and I would like to show a modal progress dialog, but only when an operation will be long (for example, more than 3 seconds). I execute my operations in a background ...
1
vote
1answer
330 views

Get progress of SHA1 being computed using SHA1CryptoServiceProvider

Currently I am implementing into my C++/CLI code a function that return the SHA1 value of a file. It is a Windows Forms application in Visual Studio. I chose to implement the .NetFramework class ...
1
vote
3answers
406 views

Using yield keyword in a loop to update progressbar in C#

Can I update a progress of a loop using the yield keyword? foreach(something obj in somelist) { yield return obj; } I know I can do this, but how do I use the values to update a progress bar ? ...
0
votes
1answer
229 views

can't find CBF tool for PROGRESS Database

I want to connect .net application with PROGRESS DB. I think, I will need Component Builder Framework(CBF) which is debugging tool for progress, but unable 2 find it anywhere. Anybody aware whether ...
3
votes
1answer
3k views

WebClient AsyncUpload progress percentage always returns 50%

i am using Webclient to upload data using Async call to a server, WebClient webClient = new WebClient(); webClient.UploadDataAsync(uri , "PUT", buffer, userToken); i've attached ...
0
votes
1answer
2k views

WPF WebBrowser: How I do access progress and new window events

I'm building an a WPF app that uses the WebBrowser control. I'm struggling on a couple of points: How to get the current progress of a download from the control. The WinForms WebBrowser control ...
0
votes
2answers
492 views

HTTP Progress in .Net Compact Framework

I'm working on an application that makes a lot of HTTP "Web Services" requests, some of which can be rather large XML files. Right now the HTTP request is made on a second thread, so the GUI/Form is ...
3
votes
3answers
561 views

Progress button for Windows Forms

.NET newbie here... I'd like to make a button in a Windows form that displays a progress or "cooldown" effect. That is, when the button is pressed, it becomes disabled. As some event or timer is ...