Click here to Skip to main content
15,922,630 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: What's wrong with it ? Pin
Mohammad Dayyan19-Jul-08 12:25
Mohammad Dayyan19-Jul-08 12:25 
QuestionMarkup Language Styling Problem! Pin
Saul Johnson18-Jul-08 9:41
Saul Johnson18-Jul-08 9:41 
AnswerRe: Markup Language Styling Problem! Pin
Perspx19-Jul-08 6:12
Perspx19-Jul-08 6:12 
GeneralRe: Markup Language Styling Problem! Pin
Saul Johnson19-Jul-08 10:19
Saul Johnson19-Jul-08 10:19 
GeneralRe: Markup Language Styling Problem! Pin
Perspx19-Jul-08 12:11
Perspx19-Jul-08 12:11 
Questioncode for progress bar weapplication showing 0-100% completion without refreshing a page Pin
harithajagini18-Jul-08 1:28
harithajagini18-Jul-08 1:28 
AnswerRe: code for progress bar weapplication showing 0-100% completion without refreshing a page Pin
Ashfield18-Jul-08 2:14
Ashfield18-Jul-08 2:14 
AnswerRe: code for progress bar weapplication showing 0-100% completion without refreshing a page Pin
Saul Johnson18-Jul-08 10:00
Saul Johnson18-Jul-08 10:00 
Hi!

If you're looking for something javaScriptish, then maybe something along these lines?

var LoadBarWidth = 1;
var LoadBarInterval = 1;
var LoadBarEndWidth = 400;
var LoadBarStepInPixels = 5;

var LoadBarIntervalID = 0;

function RunProgressBar()
{

var LoadBar = document.getElementById("MYLOADINGBAR");

if ( LoadBarWidth < LoadBarEndWidth )
{
LoadBarWidth += LoadBarStepInPixels;
LoadBar.style.width = LoadBarWidth;
}
else
{
clearInterval(LoadBarIntervalID);
}
}

function TickProgressBar()
{
LoadBarIntervalID = setInterval("RunProgressBar()", LoadBarInterval);
}


Where MYLOADBAR is the name of the division that is your loadbar.
Just a simple setInterval method usually does the trick, and this type of thing can be easily modified to do something upon the loadbar reaching 100%.

Forgive me if I misunderstood your question.

Hope this helps!

MrWolfy Big Grin | :-D
GeneralRe: code for progress bar weapplication showing 0-100% completion without refreshing a page Pin
riru20-Jul-08 6:54
riru20-Jul-08 6:54 
QuestionConsume a webservice in a WebApplication Pin
AS@1317-Jul-08 22:19
AS@1317-Jul-08 22:19 
QuestionSetting ClearType(Font Smoothing) to Web Control Application and IE browser Pin
Sonani Prakash16-Jul-08 22:33
Sonani Prakash16-Jul-08 22:33 
QuestionTool for creating web screens Pin
Brendan Vogt16-Jul-08 21:03
Brendan Vogt16-Jul-08 21:03 
AnswerRe: Tool for creating web screens Pin
Ashfield18-Jul-08 2:16
Ashfield18-Jul-08 2:16 
QuestionPHP Classifieds mail server ini_set mail help Pin
devintm016-Jul-08 20:36
devintm016-Jul-08 20:36 
AnswerRe: PHP Classifieds mail server ini_set mail help Pin
Johnny ²17-Jul-08 1:17
Johnny ²17-Jul-08 1:17 
QuestionMeta Tag For Refresh Problem Pin
Jack Black X16-Jul-08 19:23
Jack Black X16-Jul-08 19:23 
AnswerRe: Meta Tag For Refresh Problem Pin
Saul Johnson20-Jul-08 11:13
Saul Johnson20-Jul-08 11:13 
QuestionDatagrid Export to Excel [modified] Pin
Tim Carmichael16-Jul-08 5:52
Tim Carmichael16-Jul-08 5:52 
AnswerRe: Datagrid Export to Excel Pin
led mike16-Jul-08 6:09
led mike16-Jul-08 6:09 
GeneralRe: Datagrid Export to Excel Pin
Tim Carmichael16-Jul-08 6:19
Tim Carmichael16-Jul-08 6:19 
GeneralRe: Datagrid Export to Excel Pin
goodideadave18-Jul-08 13:59
goodideadave18-Jul-08 13:59 
QuestionMultiple languages support Pin
Mr.Sam15-Jul-08 23:50
Mr.Sam15-Jul-08 23:50 
AnswerRe: Multiple languages support Pin
NeverHeardOfMe16-Jul-08 7:26
NeverHeardOfMe16-Jul-08 7:26 
QuestionHow to Validate URL?? Pin
varshavmane15-Jul-08 23:25
varshavmane15-Jul-08 23:25 
QuestionHow to bypass confirmation message in asp.net Pin
hifiger200415-Jul-08 19:43
hifiger200415-Jul-08 19:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.