473,395 Members | 1,987 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Progress type dialog...


I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while this
happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play while
IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie
Jul 22 '05 #1
6 1408
If the page is going to take 20 min to generate you got bigger problems....
But anyway, something like this MAY work.
http://www.darkfalz.com/1058

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ollie" <ol**********@hotmail.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...

I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while
this
happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play
while
IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie

Jul 22 '05 #2
You can user Response.Buffer and Response.Flush to do that.

http://www.aspfaq.com/show.asp?id=2498

André Nobre

"Ollie" <ol**********@hotmail.com> escreveu na mensagem
news:uo**************@tk2msftngp13.phx.gbl...

I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while this happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play while IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie

Jul 22 '05 #3
It's not the page that take 20 mins to generate. It's the file conversion
that takes a long time (it actually averages at 40 seconds but can take 20
mins depends on the file contents).

I already use a bit of Javascript to display a "Please Wait" message. What I
need to do is show some sort of animation so users don't assume it has
stopped working.

Thanks anyway.

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:us*************@TK2MSFTNGP12.phx.gbl...
If the page is going to take 20 min to generate you got bigger problems....
But anyway, something like this MAY work.
http://www.darkfalz.com/1058

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ollie" <ol**********@hotmail.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...

I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while
this
happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play
while
IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie


Jul 22 '05 #4
This works a treat. Thanks

"André Nobre" <no@spam.com> wrote in message
news:OD**************@tk2msftngp13.phx.gbl...
You can user Response.Buffer and Response.Flush to do that.

http://www.aspfaq.com/show.asp?id=2498

André Nobre

"Ollie" <ol**********@hotmail.com> escreveu na mensagem
news:uo**************@tk2msftngp13.phx.gbl...

I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while this happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play while IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie


Jul 22 '05 #5
instead of the message use an animated GIF

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ollie" <ol**********@hotmail.com> wrote in message
news:ur**************@TK2MSFTNGP09.phx.gbl...
It's not the page that take 20 mins to generate. It's the file conversion
that takes a long time (it actually averages at 40 seconds but can take 20
mins depends on the file contents).

I already use a bit of Javascript to display a "Please Wait" message. What
I
need to do is show some sort of animation so users don't assume it has
stopped working.

Thanks anyway.

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:us*************@TK2MSFTNGP12.phx.gbl...
If the page is going to take 20 min to generate you got bigger
problems....
But anyway, something like this MAY work.
http://www.darkfalz.com/1058

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ollie" <ol**********@hotmail.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...

I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while
this
happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play
while
IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie


Jul 22 '05 #6
Tried that. The gif does not play.

I have got it working now anyway. Using Response.Buffer and Response.Flush()

Cheers

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uI**************@TK2MSFTNGP15.phx.gbl...
instead of the message use an animated GIF

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ollie" <ol**********@hotmail.com> wrote in message
news:ur**************@TK2MSFTNGP09.phx.gbl...
It's not the page that take 20 mins to generate. It's the file conversion
that takes a long time (it actually averages at 40 seconds but can take 20
mins depends on the file contents).

I already use a bit of Javascript to display a "Please Wait" message. What
I
need to do is show some sort of animation so users don't assume it has
stopped working.

Thanks anyway.

"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:us*************@TK2MSFTNGP12.phx.gbl...
If the page is going to take 20 min to generate you got bigger
problems....
But anyway, something like this MAY work.
http://www.darkfalz.com/1058

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"Ollie" <ol**********@hotmail.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...

I have a web app that converts files. The conversion can take up to 20
minutes depending on the file size and contents.

So, to help the user I want to display an animation (gif/avi/swf) while
this
happens. (so that they don't assume it has stopped and go and submit the
file again!)

I have tried all sorts of options but cannot get any animation to play
while
IE/NS is waiting for the asp script to process and post back.

anyone got any ideas???

Thanks

Ollie



Jul 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Gary O'Malley | last post by:
Everytime I download a file from the web I get a nice animated dialogue box that shows the size of the file, how much has been received and the approximate remaining time. It also gives the...
4
by: Alexander | last post by:
Hi, I have written a program that takes on some operations much more time than I expected. As I have seen users clicking wildly on the screen to make something happen, I want to follow the...
1
by: Ziggy | last post by:
Please excuse this elementary question...but I am just dumb.... I have taken a simplistic Dialog Box and added a Progress Control. When I did that, my Dialog Box was no longer able to intialize...
1
by: Dino M. Buljubasic | last post by:
I'd like to include a pop up progress bar in my application that would show the progress of AutoUpdate feature, searching, storing, etc in my application. Any simple code for this to share? ...
7
by: Pepi Tonas | last post by:
I have a form that takes some time to load because it has to populate some Data. I was trying to display a form on top of it with an activity bar so that user can see that something's going on. ...
5
by: B-Dog | last post by:
I'm trying to build a custom progress bar that will run as some subs are running in the background but when I open the custom form with the progress bar on it using the showdialog, none of the subs...
2
by: reshm | last post by:
In my application i have file save & file open button i use common dialog box to save the file but simultaneously i want to show progrss bar to show the progess. how can i do?
2
by: Michael Jervis | last post by:
Hi, I'm writing a little application that scans a large number of media files for processing. The main application currently uses a backgroundworkerprocess to perform the scan. Each media...
5
by: Miro | last post by:
I will try my best to ask this question correctly. I think in the end the code will make more sence of what I am trying to accomplish. I am just not sure of what to search for on the net. I...
3
by: Lawyno | last post by:
Hi there :) Here are some infos about my "project": I have the "honor" to write some scripts (VBScript) for some application developed by another company. In this application there is limited...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.