3
votes
1answer
82 views
General Purpose Progressbar in Django
I want to make a little web-frontend for copying (rsync) and encoding (ffmpeg) files for my Server using Django.
And I want to keep track of the progress of the processes.
I saw a …
0
votes
2answers
59 views
How to advance a progress bar from a recursive method while avoiding threading issues?
I made this code example which successfully uses a BackgroundWorker to advance a progress bar in a for loop.
Now I'm trying to adapt it to work with the following recursive file c …
2
votes
3answers
33 views
Multiline progress bars
I know that to update something like a progress bar on the command line, one uses '\r'. Is there any way to update multiple lines?
1
vote
2answers
80 views
Windows 7 Progress Bar
Hello,
I was seeing that when you do somethings at Windows 7 that haves a progress bar, things like downloading a file. You can see that in the programs bar, at the icon of the ap …
0
votes
3answers
123 views
Progress Bar C#
I have a progress bar to show the status of the program loading songs into the library.
foreach (Song s in InitializeLibrary())
{
Library.AddSong(s);
pBar. …
0
votes
1answer
38 views
Flex HTTPService Progressbar
Hi,
How can I set a progress bar that may start when an HTTPService is sent and stop when the HTTPService ends?
I followed code given here but encountered following error:
Ty …
4
votes
4answers
182 views
How to create a MFC dialog with a progress bar in a separate thread?
My application may take a while to connect to a database. This connection is made with a single library function call, i.e. I cannot put progress updates in there and make callback …
0
votes
2answers
54 views
Parsing output of apt-get install for progress bar
I'm working on a simple GUI Python script to do some simple tasks on a system. Some of that work involves apt-get install to install some packages.
While this is going on, I want …
0
votes
1answer
62 views
Silverlight 3 ProgressBar Template
Hi All,
I am trying to retemplate a Silverlight3 progress bar, to show the "Value" in a TextBlock within the ProgressBarIndicator, and the "Maximum" in another textblock in the Pr …
0
votes
1answer
88 views
How to create progress bar on top of google map
How do I create a progress bar on top of google map in flex/as3? I tried to ask google maps API for flash, but no answer... May be some of you have done this already.
Thanks
EDIT …
0
votes
3answers
59 views
Remove progress bar from published document in MATLAB
I am using the publishing functionality of MATLAB to generate a quick report of some analysis I'm running. Since the analysis is quite time-consuming, I've added a progress bar to …
0
votes
1answer
111 views
how i can implement a custom UIAlertview with a progress bar and a cancel button?
Hi iPhone application developers,
I am developing an iphone application.
This application allows a user to upload images to my server.
I want to show the upload progress in an ale …
1
vote
3answers
77 views
Java: JProgressBar
Hi,
Is it possible to make a progressbar in Java like displayed on this page?
Image.So, not the default progressbar "filling-way".
If so, how?
Thanks
0
votes
0answers
75 views
Upload file - Progress Bar?
Hi, I'm trying out uploading of files from local computer to a server and I'm using these few lines of code:
My.Computer.Network.UploadFile("C:\Temp\test.mp3", "192.168.1.2\test", …
1
vote
2answers
52 views
Informing the user that a DataGridView is being populated
I am writing a program in VB.Net to manage text messages sent through an API. It allows you to view messages in a datagridview and filter by date, sent/unsent etc...
To load the m …
