progress

How are record arrays displayed and manipulated in Progress 4GL/non-GUI screens?

I currently have an INFORMIX-SQL app I wish to re-write in OpenEdge/4GL(non-GUI) client with the Personal engine and would like to know the methods and details for dealing with record arrays where I need to display, update and add multiple transaction rows within Progress' forms. I also have several question regarding functionality, e.g....

VB.NET - integrate Win7 taskbar progress without the external DLLs?

Hey trying to make a fancy little app here in VB.NET framework 4. I've seen several programs which utilise windows 7's taskbar progressbar, but they have it embedded in the application when i googled and attempted to do this, my program had to lug around 3 extra dlls when its supposed to be a single executable, and highly portable. how c...

Filetype in HTML upload form

How can i limit my form to only accept jpeg files? Now it shows all files. <input name="image" type="file" /> And are there any javascript method to show progress? ...

Text Progress Bar in the Console

Is there a good way to do the following? I wrote a simple console app to upload and download files from an FTP server using the ftplib. Each time some data chunks are downloaded, I want to update a text progress bar, even if it's just a number. But I don't want to erase all the text that's been printed to the console. (Doing a "clear"...

Can't grab progress on http POST file upload (Android)

I am developing an Android app which enables the user to upload a file to services like Twitpic and others. The POST upload is done without any external libraries and works just fine. My only problem is, that I can't grab any progress because all the uploading is done when I receive the response, not while writing the bytes into the outp...

Progress Panel in Java

Hi! Can anyone could give an idea about how I can make a ProgressPanel in a Java Application?... The idea is basically to call a Frame with a progress bar and wait until the operation is done. However, I got some few problems, I suppose that a Thread must be used. Any suggestion? Thx ...

Alternative way to grab progress on multipart/form upload (Android)

As described in this answer you cannot grab a progress of a multipart/form POST upload in Android using only the Android SDK, because there is an issue with the stream buffering when using HttpURLConnection which will be fixed post Froyo (see http://code.google.com/p/android/issues/detail?id=3164#c6). Since the Apache HttpClient 3.1 was...

Error occurred while creating/connecting to automation server 0x80131500

Based on the number of matches on Google, this may be a candidate for the Tumbleweed award, but here goes... I have a DLL written in .Net that is exposed for reverse COM interop. There are several business objects and one object that exposes a method to call a web service via WSE3. Using VBScript, all of the objects can be instantiate...

CAAnimation that calls a method in periodic animation-progress intervals?

Say I want to animate a ball rolling 1000 pixels to the right, specifying a timing function in the process – something like this: UIView *ball = [[UIView alloc] initWithFrame:CGRectMake(0,0,30,30)]; CABasicAnimation* anim = [CABasicAnimation animationWithKeyPath:@"transform.translation.x"]; anim.toValue = [NSNumber numberWithFlo...

How to see progress when parsing large XML file with XML::Parser?

I'm using following code to parse rather large xml file (> 50GB): use XML::Parser; my $p = new XML::Parser( 'Handlers' => { 'Start' => \&handle_start, 'End' => \&handle_end, 'Char' => \&handle_char, } ); $p->parsefile( 'source.xml' ); ... sub handle_start { ... } The problem is tha...

Window appears "see-through" when trying to append a line of text - Java

I am trying to append a percentage to a text area in java. It involves a loop that determines the percentage and then appends that to another JFrame with the text area in it. The "pro" class simply has a window with a JtextArea. The problem that I am encountering is that the window appears to show the window underneath, as if it were ...

Write Application Progress to WebService

I have a daily launched multi-threaded loading service. I would like to keep tack of the percentage progress of the loader. I was thinking that it would be good to have an update column on a database table that writes the %Progress. However, I have learned that this may not be a good idea as there will there be a large overhead(5k update...

Monitoring the progress of an SQL query in SQL SERVER

Hello, I saw a similar question which asked how to monitor the progress of a backup / restore operation: http://stackoverflow.com/questions/152447/is-there-a-sql-script-that-i-can-use-to-determine-the-progress-of-a-sql-server-ba I would like to know if there's a similar query / way to see how much time the query has left until it will...

How to use a WebServices to display Progress Indication?

0 down vote favorite I have a daily launched multi-threaded loading service. I would like to keep tack of the percentage progress of the loader. I was thinking that it would be good to have an update column on a database table that writes the %Progress. However, I have learned that this may not be a good idea as there will there be a ...

Silverlight page level activity detection

Hi, I have a Silverlight 3 application that needs to display progress whenever there is any activity on the page. I have various buttons on the page, some drop down lists and other UI elements, most of which are capable of making a request. //Edited and as such registering the BusyIndicator control for each of them is what I am tryin...

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 its license has been taken back or something? Because I know it was there 2 years back. ...

C# WebClient Using Async and returning the data

Alright, I have ran into a problem when using DownloadDataAsync and having it return the bytes to me. This is the code I am using: private void button1_Click(object sender, EventArgs e) { byte[] bytes; using (WebClient client = new WebClient()) { client.DownloadProgressChanged += new DownloadP...

Android: Progress Dialog Doesn't Show

I have some data I load into the database the first time a user enters my Activity, and want to show a ProgressDialog while this data is loaded for the first time. My Activity is an ExpandableListActivity and I don't create the SimpleExpandableListAdapter or call setListAdapter passing my adapter until I'm sure the data is actually there...

WPF: Creating dynamic progress indicator

Hello, I'm currently trying to write an application with a progress indicator in C# using WPF: http://img839.imageshack.us/my.php?image=20100831180406.png So far the indicator is finished. However I don't have any possibility to lower the length of the indicator yet. I could redraw the indicator using other coordinates but that would...

Cannot implement meter in windows API

I am using the windows API (in C++) to create a windows application. Now, I have a progress bar which I want to show like a meter. A meter is blue and has no animation. I cannot figure out how to implement this, and if I have to, I will just settle for the usual green progress bar. Please help. EDIT: At least, is it possible to disabl...