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....
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...
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?
...
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"...
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...
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
...
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...
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...
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...
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...
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 ...
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...
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...
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 ...
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...
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.
...
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...
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...
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...
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...