skydiverbob 0 #1 September 12, 2002 I used to have a program that was a Freefall time calculator that would keep a running total on the computer. I accidently deleted a exe file and it is no longer working. Does anyone know the program, or where it can be obtained. If I recall it was a free program that I downloaded several years ago but can't remember where. Email me @ skydiverbob@msn.com if you can help. ThanksWho Dares Wins Quote Share this post Link to post Share on other sites
fonz 0 #2 September 12, 2002 What exactly did it do? I might be able to write you such a proggy.And five hundred entirely naked women dropped out of the sky on parachutes. -- The Hitchhiker's Guide to the Galaxy Quote Share this post Link to post Share on other sites
sangiro 26 #3 September 12, 2002 I remember that one! I just did some digging in the underbelly of Dropzone.com... try this: http://www.dropzone.com/files/ffcalc20.zip Is that it? Safe swoops Sangiro Quote Share this post Link to post Share on other sites
peek 21 #4 September 12, 2002 Here is some BASIC source code to a quick one I wrote. (Line 420 seems to be wrapping, but you get the idea.) Use GWBASIC.EXE 10 CLS 20 PRINT "Freefall time calculator" 30 PRINT "note: hours do not rollover into days" 40 PRINT 50 INPUT "Starting Hours"; HOUR 60 INPUT "Starting Minutes"; MINUTE 70 INPUT "Starting Seconds"; SECOND 200 IF SECOND<60 THEN 300 210 SECOND=SECOND-60 220 MINUTE=MINUTE+1 230 GOTO 200 300 IF MINUTE<60 THEN 400 310 MINUTE=MINUTE-60 320 HOUR=HOUR+1 330 GOTO 300 400 HR$=RIGHT$("0"+RIGHT$(STR$(HOUR),LEN(STR$(HOUR))-1),2) 410 MIN$=RIGHT$("0"+RIGHT$(STR$(MINUTE),LEN(STR$(MINUTE))-1),2) 420 SEC$=RIGHT$("0"+RIGHT$(STR$(SECOND),LEN(STR$(SECOND))-1),2) 500 PRINT HR$;":"; 510 PRINT MIN$;":"; 520 PRINT SEC$ 600 INPUT "Seconds of freefall on next jump (0 to quit)";S 610 IF S=0 THEN SYSTEM 620 SECOND=SECOND+S 630 GOTO 200 Quote Share this post Link to post Share on other sites
PhreeZone 20 #5 September 12, 2002 Gary... question, whos the bigger geek? You for writing a program that still uses basic, or me for being able to read it and understand it? One thing... can I port this to a few other languages? Yesterday is history And tomorrow is a mystery Parachutemanuals.com Quote Share this post Link to post Share on other sites
ernokaikkonen 0 #6 September 12, 2002 Augghh!! My eyes!! BASIC code... and... evil... goto-statements...must...hit...back....button.... Quote Share this post Link to post Share on other sites
skydiverbob 0 #7 September 13, 2002 Kewlness, that was it exactly, thanks man, I owe ya.Who Dares Wins Quote Share this post Link to post Share on other sites
carbon 0 #8 September 14, 2002 Makes me want to whip out my old Atari 800XL. I couldn't tell you how many thousands of lines of that crap I wrote when I was young. Now it's Java, Perl, VB, ASP....it's all crap...but it's a living.-Carbon Quote Share this post Link to post Share on other sites
christoofar 0 #9 September 14, 2002 QuoteMakes me want to whip out my old Atari 800XL. I couldn't tell you how many thousands of lines of that crap I wrote when I was young. Now it's Java, Perl, VB, ASP....it's all crap...but it's a living. I have an Atari 400 with the membrane keys (shows you how old I am). ____________________________________________________________ I'm RICK JAMES! Fo shizzle. Quote Share this post Link to post Share on other sites
quatorze 1 #10 September 14, 2002 This is where I get to feel bad. Basic is the only one that I know, Commodore 64 here I come. I'm not afriad of dying, I'm afraid of never really living- Erin Engle Quote Share this post Link to post Share on other sites