progress

How to add progress bar in Navigation bar like SMS sending progress

How to add progress bar in Navigation bar like SMS sending progress . i am developing iphone app and want to show file upload progress bar in top navigation bar like iphone sms message sending status bar . Pls advice me how to do . Thank !!! ...

SQL update one table from another table.

Here’s a simplified version of my problem Table 1 Key1, lastdate, lasttranstype Table2 Table1key1, trandate, trantype I want an SQL statement to update lastdate and lasttransdate on table1 for each record in that table using the matching record in Table2 with the latest date My DB is progress. Is this possible (I can of course write...

C++ libcurl console progress bar

I would like a progress bar to appear in the console window while a file is being downloaded. My code is this: http://stackoverflow.com/questions/1636333/download-file-using-libcurl-in-c-c/1636827#1636827. How to have a progress bar in libcurl? ...

ActionScript 3: ProgressEvent's bytesLoaded property to Document Class

Hi, in AS3, I have an external class ImageLoader, that loads an image upon request. In that class, I have an event handlers: ImageLoader Class public function loadImg(path:String):void { ldr = new Loader(); ldr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, getProgress); var req:URLRequest = new URLRequest(path); ldr.lo...

LIKE operator for Progress DB SQL

I'm trying to do something like this in Progress SQL (THIS IS NOT POSTGRES!) SELECT CASE WHEN code LIKE '%foo%' THEN 'Y' ELSE 'N' END as foo FROM bar However Progress does not support a LIKE operator. INSTR looks like it might do the job, but it is a Progress extension an isn't supported on the DB I am using. Is there another ...

Update Array field in progress DB using ODBC

Dear All: I access the progress DB using ODBC in my C# program, and I need to update some fields,which are array data type. so how can I write my sql statement to do such things? I read some progress documentations,in which some methods were mentioned as bellow: update pub.sometable set arrayfield='X;X;X;X;X;X' where condition.... but ...

php_uploadprogress wamp refresh information

Hi! Did anyone used php_uploadprogress extension for wamp? When i try to use it with jquery, only the fist is relevant, and all other request show an not-updated information. The configuration is the fallowing: uploadprogress.file.filename__template=C:\wamp\tmp\upload_progress_%s.txt uploadprogress.get_contents=0 uploadprogres...

[Solved] Server-side, get progress on sending file

Hello fellow programmers. Basically, what I want to do is to check how much of a file my webserver has sent to a client, when the client is downloading one. Is this even possible? Does apache provide any module/extension that would help me accomplish my task? I use a linux distro, apache2 and php5. Regards. ...

Preventing NaN from being persisted by Hibernate

I am using Hibernate as my JPA provider with it connecting to a Progress database. When a NaN value is persisted it is causing lots of problems - it prevents the row from being read in certain circumstances. Is there a way to hook in to the standard double type persistence to convert NaN (and probably + and - infinity) to a different val...

get the file size of a CFHTTPStream

Hi, How to get a file size of a CFHTTPStream. Suppose a file called "http://testserver.com/test.jpg " is available to read. Here I need to get the file size "test.jpg", this I need to display progress while using CFReadStreamRead. Or in other words I need how many bytes are available in the server before the start of the read process. ...

How do I fetch files with HTTP using Progress ABL?

Is there an easy way to fetch a file using an HTTP URL with Progress ABL 10.1B without external dependencies? If so, what is the most elegant way of doing so? I tried the documentation, but didn't seem to contain anything like that. ...

C# : OnClosing takes a while, how can I show a dialog with a marquee progressbar ?

I have to do quite some cleanup in my OnClosing handler, which makes it seem like my app is hanging. How can I show a small dialog with a marquee-style progressbar so users will at least know it's still 'working' ? Basicly I want to start the dialog, proceed with all my shutdown-procedures and when that's done, close the progress-dialo...

Unable to import data into SQL Server from Progress DB, issue with data type conversion?

I'm trying to import data from a Progress database into a MS SQL 2005 Server database. On SQL Server, I'm right clicking on my schema name and going Tasks > Import Data... and running through the wizard. I have an ODBC Connection to progress setup, no issues there, I also test my queries using ODBC Explorer first to ensure I have no sy...

PowerShell: suppress Write-Progress output

I have a PowerShell script that calls a CmdLet which in turn reports its progress using Write-Progress, and I would like to hide the progress bar. In is it possible to suppress or redirect the output of the Write-Progress CmdLet? ...

String comparison oddities in 4GL

OK, so I've learned the hard way that string comparison works ... differently in Progress 4GL. For example, "x " and "x" seem to be the same thing, and "ß" is equal to "ss" - but "ö" is not equal to "oe". Is there any comprehensive list of what substrings are considered equal in ABL? I've checked the documentation, but wasn't able to ...

Get the percentage of the page load using javascript?

Hi guys, I'm writing an iphone application and need to show a progress bar that shows the loading progress of a web page. I want to insert a JS function to this page and once I call it, it will give me the load progress (how much bytes have been loaded and the total size). Is this possible? Thanks ...

tool to demonstrate software progress

I want to demonstrate how much progress has been made on our project for the client. We have a number of milestones and multiple features for each milestone. What I think would work is if we could assign colors for each milestone/feature based on progress, and make this viewable online. Any ideas? ...

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 raises ProgressChange events - how can I relicate this feature with the WPF variant? How to capture links that are trying to open in a new w...

How do I do HTTP GET and POST in Progress/OpenEdge ABL?

The Progress docs spill plenty of ink on SOAP, but I'm having trouble finding the example for a simple HTTP GET/POST with Progress ABL. How do I GET and POST strings to/from a URL? Can the URL be https://? Can Progress provide HTTP Basic or HTTP Digest authentication? ...

Progress "bar" using threads in vb.net

I currently have a program that runs several "intense" queries. I added a textbox and presented status updates when a query was starting, eding and how many were left. This would suite my need, but the textbox doesn't actually display anything until all the queries are finished. It then displays all the updates at once. I'm assuming upda...