Search the web
Sign In
New User? Sign Up
qbasic · This is a Discusion List for all QuickBasic and QBasic Programmers. Need to learn qb this is the list for you!
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2002 - 2031 of 4379   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2002
Hi everybody. I've been working on a little program and im trying to make it so that i can get rid of some unneeded junk by using the KILL command which works...
JAGSOFT5@...
Send Email
Mar 6, 2003
9:27 pm
2003
You can modify this code. DIM filename AS STRING CLS SHELL "dir /b /a-d > dir.txt" OPEN "dir.txt" FOR INPUT AS #1 DO WHILE NOT EOF(1) LINE INPUT #1, filename '...
Ivan-Novendry
ivannovendry
Offline Send Email
Mar 6, 2003
10:52 pm
2004
... sounds complicated. how about: dir$ = "c:\junk\" SHELL "dir /b " + dir$ + "*.* > files.txt" OPEN "files.txt" FOR INPUT AS #1 numfiles = 0 WHILE NOT EOF(1)...
Robert B Wilson
han_solo_55
Offline Send Email
Mar 6, 2003
11:31 pm
2005
thanks guys, i think i've got it working now. only problem is it will only delete files without long filenames. : \ oh well this should work just fine anyways...
JAGSOFT5@...
Send Email
Mar 7, 2003
12:45 am
2006
How do I get a number I input say .65 cents and do a formula in qbasic that will tell me how many quarters and how many dimes and how many nickels and how many...
maryrelaxing
Online Now Send Email
Mar 8, 2003
5:55 am
2007
I dont feel like doing the formula work, but you would get the total number of change. If it was 79 cents back, you would subtract 75, something like this: if...
con-boy13@...
bander_87
Offline Send Email
Mar 8, 2003
4:39 pm
2008
<<<(maryrelaxing)How do I get a number I input say .65 cents and do a formula in qbasic > that will tell me how many quarters and how many dimes and how many...
chris
divinepolarity
Offline Send Email
Mar 10, 2003
4:07 pm
2009
This is all I can come up with.... (Forgive my coding as well, it's been awhile since I used QBASIC) SUB change (total) quarters = INT(total / 25) total =...
Phishtar
chuzzum
Offline Send Email
Mar 11, 2003
3:39 am
2010
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the qbasic group. File : /5-11-6.BAS ...
qbasic@yahoogroups.com
Send Email
Mar 11, 2003
4:41 am
2011
Can someone tell me what's wrong with my program. I finally got it to work but when I type a number over 100 i get an error which is what i want and i type in...
maryrelaxing
Online Now Send Email
Mar 11, 2003
4:50 am
2012
Can you be more spacific? and possibling giving some sample code? On Tue, 11 Mar 2003 04:50:07 -0000 "maryrelaxing" ... ...
con-boy13@...
bander_87
Offline Send Email
Mar 11, 2003
9:51 pm
2013
i'm not sure exactly what the problem with your program is, but you should also note that its calculations are still not correct. enter in 43 cents and you...
JAGSOFT5@...
Send Email
Mar 12, 2003
12:50 am
2014
Hi Everyone, Just found your group on yahoogroups and was hoping I get get a few pointers from the group. <sigh> I need some help badly. :-( I am trying to...
aerobat_1
Offline Send Email
Mar 12, 2003
1:17 am
2015
What version of Q/QuickBasic is it? The only one you actually have to "install" is 7.1PDS, the other ones you just copy to the disk and run (IIRC). Jordan C. ...
Jordan C
mdiegoblake@...
Send Email
Mar 12, 2003
3:11 pm
2016
... To be honest, I couldn't make heads or tails of it. I guess your pragramming style is a lot different than mine. Funny that there can be different "styles"...
chris
divinepolarity
Offline Send Email
Mar 13, 2003
3:49 am
2017
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the qbasic group. File : /new5-11-6.BAS ...
qbasic@yahoogroups.com
Send Email
Mar 13, 2003
4:00 am
2018
Check out the new file I put up. It works a little better but I still have the same problem...
maryrelaxing
Online Now Send Email
Mar 13, 2003
4:03 am
2019
I put a file in the files that says new 5-11 ... it ... again ... won't...
maryrelaxing
Online Now Send Email
Mar 13, 2003
4:04 am
2020
I tried your code and it didn't work...
maryrelaxing
Online Now Send Email
Mar 13, 2003
4:05 am
2021
... Ok Mary, I figured out the problem with my code and fixed it. I just had to change an IF-THEN to an IF-THEN/END IF. Check it out...flawless this time I...
chris
divinepolarity
Offline Send Email
Mar 13, 2003
4:45 pm
2022
What about mine? My code worked...I tested with almost every amount of change I could find.... ... From: qbasic@yahoogroups.com Date: Wednesday, March 12, 2003...
Phishtar
chuzzum
Offline Send Email
Mar 13, 2003
8:01 pm
2023
I can't get yours to work in qbasic Phishtar <ish@...> wrote:FLAVOR00-NONE-0000-0000-000000000000;What about mine? My code worked...I tested with...
Mary C
maryrelaxing
Online Now Send Email
Mar 14, 2003
1:25 am
2024
that works except when I enter an amount over 100 it goes blank chris <divine.polarity@...> wrote:> I tried your code and it didn't work Ok Mary, I...
Mary C
maryrelaxing
Online Now Send Email
Mar 14, 2003
2:11 am
2025
<<< (Mary)that works except when I enter an amount over 100 it goes blank >>> If you used any decimals then yes, it will go blank. I have revised the code...
divine.polarity@...
divinepolarity
Offline Send Email
Mar 14, 2003
1:50 pm
2026
That works good except I need to add a code to give me a beepif the amount entered is more than 1 dollar. ... goes blank >>> ... revised the code again so that...
maryrelaxing
Online Now Send Email
Mar 15, 2003
12:48 am
2027
<<< (Mary)That works good except I need to add a code to give me a beepif the amount entered is more than 1 dollar. >>> IF money > 100 then BEEP (use this line...
divine.polarity@...
divinepolarity
Offline Send Email
Mar 15, 2003
2:50 pm
2028
On Thu, 13 Mar 2003 18:11:41 -0800 (PST), Mary C <maryrelaxing@...> ... I stole your code and nuked it, hope that's ok :) '-=-=-=-=-=-=-=-=-=-= CUT HERE...
Michael Marquart
foxidrive
Offline Send Email
Mar 15, 2003
3:57 pm
2029
I know its late .. but here is my code... Qmars =================================== REM Change maker REM REM program to evaluate the amount of change REM...
quartermars@...
quartermars
Offline Send Email
Mar 15, 2003
5:30 pm
2030
<<< (Michael)I stole your code and nuked it, hope that's ok :) >>> <<< (Qmars)I know its late .. but here is my code... >>> Brilliant! Both of your codes were...
divine.polarity@...
divinepolarity
Offline Send Email
Mar 17, 2003
3:20 am
2031
... Don't forget "cheap". Have you checked out the price on Visual Basic 6? Free is much better. G. Edward...
noneyet10
efox001
Offline Send Email
Mar 17, 2003
7:43 am
Messages 2002 - 2031 of 4379   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help