simple Progress bar
Author |
Message |
grispyg
|
|
|
|
|
Sponsor Sponsor
|
|
|
DanShadow
|
Posted: Fri Jan 09, 2004 7:54 pm Post subject: (No subject) |
|
|
heh, I used to use that all the time..except I made it slightly more colorful:
code: |
Draw.FillBox (0, 0, maxx, maxy, 255)
colorback (255)
color (10)
var zz : int := 1
for i : 1 .. 100
delay (50)
Draw.FillBox (100, 15, 100 + zz, 25, 54)
Draw.Box (100, 15, 200, 25, 1)
zz := zz + 1
locate (23, 13)
put "Loading... ", zz, "%" ..
end for
locate (23, 13)
put "Done Loading! " ..
|
|
|
|
|
|
|
Tony
|
Posted: Fri Jan 09, 2004 10:23 pm Post subject: (No subject) |
|
|
I cannot stress enough how lame and newbish it is to have a FAKE loading bar just for the heck of having it It is just wrong on so many levels.... |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
santabruzer
|
Posted: Fri Jan 09, 2004 10:26 pm Post subject: (No subject) |
|
|
hey.. if people enjoy it.. you can't stop them .... besides.. it makes your program have more "source" code.... by the loading time |
|
|
|
|
|
Tony
|
Posted: Fri Jan 09, 2004 10:28 pm Post subject: (No subject) |
|
|
haha more source code? If you want extra lines in the file, why not just copy/paste a bunch of random functions you not gonna use? |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
shorthair
|
Posted: Fri Jan 09, 2004 10:51 pm Post subject: (No subject) |
|
|
better yet write your programs in machine code , im talkin like a 100 line program = 10000 lines in machine , could you imagine what it would be liek to code in taht language way back when |
|
|
|
|
|
AsianSensation
|
|
|
|
|
McKenzie
|
Posted: Fri Jan 09, 2004 11:07 pm Post subject: (No subject) |
|
|
<n00b Translation>
progress bars are used to tell the user that "no, your computer is not frozen I'm just loading a whole bunch of pictures"
Moral of the Day:
~~~~~~~~~~~
1. If your program looks like it has crashed the computer when you run it, hey use a progress bar.
2. If your program runs at about the same time you hit F1, don't use a progress bar. |
|
|
|
|
|
Sponsor Sponsor
|
|
|
shorthair
|
Posted: Tue Jan 13, 2004 7:06 pm Post subject: (No subject) |
|
|
Wow Mr M. your rackin in the bits ther , you better save those for a rainy day. and about the progress bad i belive in what Mr.M says but i have no love for them , i made a real one buit mostr of the time unless your doing somthign else it just goes from 0 to 100 really fast , only a trace shows it , i also have one while my telnet verifies the stability of the connection. it even goes back to zero sometime for some reason i think its if well im sure its when athe loop is runa second time if the first fails. |
|
|
|
|
|
jedi-bob
|
Posted: Mon Jan 19, 2004 3:26 pm Post subject: (No subject) |
|
|
Dan Shadow, can I use your progress bar in my program? |
|
|
|
|
|
Tony
|
Posted: Mon Jan 19, 2004 5:26 pm Post subject: (No subject) |
|
|
well the idea is that you can use anything from the [Source Code] as long as you give appropriate credit someplace in your program.
btw - you can use my percent bar found here |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
|
|
|