Tagged Questions
0
votes
1answer
50 views
Android mediaplayer not progress seeking compleatly
Am trying to play a .wav file using media-player. Actually I had done so far shown below. Its playing an updating the progress correctly but the problem is, media player is not seeking completely. ...
0
votes
0answers
227 views
Jquery, ajax beforeSend not working
These are the photo uploading code:
$.ajax({
url: "php/uploadPhoto.php",
type: "POST",
data: formdata,
processData: false,
contentType: false,
beforeSend: ...
1
vote
1answer
138 views
VB.NET DownloadFileAsync fires completion event but doesn't download
I'm trying to download a .zip file to make an auto-updater for my game. It needs to show progress. I followed an online tutorial and got this chunk of code for the actual downloader:
Dim ...
0
votes
1answer
162 views
Android updating progress doesn't work while downloading LARGE files
I have read this topic
and I have a problem about downloading large files, because progress dialog does not upload progress or upload only once after downloading and show 100% suddenly. But all works ...
1
vote
3answers
103 views
How to get the progress of reading a file
I'm trying to read a large object from a file in my application. Since this can take some time I'd like to somehow connect the reading of the file with a JProgressBar. Is there any easy way to find ...
1
vote
2answers
2k views
Pass file from Javascript upload to PHP
I'm working on a script to let the user upload a file and sees a upload status and the file is then saved on the server.
The problem is that I cannot use the php api. So I was thinking to upload the ...
2
votes
4answers
3k views
AJAX/PHP based upload with progress bar for large files
I've been trying to create a non-flash upload panel which also shows a progress bar.
On our server we have PHP 5.3 (cannot upgrade to 5.4 for now, so the new upload progress feature cannot be used => ...
4
votes
1answer
1k views
ajax php file upload without iFrame or flash engine
I've simplified my code for uploading a file without iFrame or flash engine, and i came up to this ajax function:
<input type="file" name="uploadfile" id="myfile" /><label for="file" ...
0
votes
1answer
650 views
upload with ajax and php without iFrame or flash engine
I am trying to make an ajax upload function with progress bar, i was trying to simplify an example i found of the internet and i came to this function:
<form>
<input type="file" ...
1
vote
2answers
391 views
Progress bar for file transfer to sd
i use the following code for downloading a file from the internet. using this code i have a progress dialog
private void startDownload() {
String url = tv.getText().toString();
new ...
0
votes
1answer
163 views
Windows CopyFilesDialog multiple files, no folder
In my WPF app, I want to copy files using Copy Files Dialog builded in windows. I have found I can do it by: Microsoft.VisualBasic.FileIO.FileSystem.CopyFile, but the problem is I don't know how to ...
1
vote
1answer
108 views
jQuery: Stall a forms default action
I'm currently working with progress bars for form uploads using the PHP uploadprogress extension. I have followed a tutorial here and everything works as in the example: ...
2
votes
4answers
3k views
Delphi: Copy Files from folder with Overall progress. CopyFileEx?
I have found examples of CopyFileEx with progress, but I need to copy some files from a folder with overall progress.
Can anybody provide info how to do this? Or is there good alternative (component, ...
2
votes
5answers
665 views
File uploader with progress bar?
How would I go about creating an HTML/PHP/AJAX file uploader with a progress bar? I have no idea where to start.
3
votes
1answer
3k views
Upload progress (with or w/o XMLHttpRequest 2) with Javascript
XMLHttpRequest 2 has a new thing. It can upload files. I got that working (it's super easy). Now I'm wondering if there's a way to get the upload progress of that file. I wouldn't be interested in ...
0
votes
2answers
359 views
Server-side, get progress on sending file
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 ...
4
votes
2answers
1k views
Flash ProgressEvent Not Showing Total Size
I'm using a ProgressEvent in Flash to determine how long something will take to download. I've got this:
progress = event.target.bytesLoaded/event.target.bytesTotal;
to set a percentage.
After ...
7
votes
3answers
3k views
Ruby show progress when copying files
I'd like to be able to show the progress of a file copy operation when copying files using Ruby (currently using FileUtils.cp) I've tried setting the verbose option to true but that just seems to show ...
2
votes
2answers
1k views
Tracking file load progress in Python
A lot of modules I use import entire files into memory or trickle a file's contents in while they process it. I'm wondering if there's any way to track this sort of loading progress? Possibly a ...