Search found 8 matches
- Tue Sep 26, 2006 7:33 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: HELP! calculating student's average
- Replies: 15
- Views: 17111
HELP! calculating student's average
i have to calculate a student's average by writing a prog and i am not allow to use if, elseif, else, and so on. Except do until, do while loops, and while-wend. here is my coding. i am trying to make it print 10 times "Wow a mark of"; average; "Holy Cow!" when the average is 90 and above but someho...
- Fri Jul 07, 2006 10:15 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: .exe file to appear in start menu
- Replies: 2
- Views: 5365
.exe file to appear in start menu
how do you make an .exe file to appear in a start menu? I used qbasic to complete my game. And now i need to find if any program can remove and install the .exe just like an actual game you buy from a gaming store.
thanks
thanks
- Fri Jul 07, 2006 8:26 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How do you make .bas to .exe
- Replies: 6
- Views: 8138
thanks guys
a great thanks to everyone who helped me. i finally accomplished it
- Thu Jul 06, 2006 1:19 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How do you make .bas to .exe
- Replies: 6
- Views: 8138
- Thu Jul 06, 2006 8:20 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How do you make .bas to .exe
- Replies: 6
- Views: 8138
How do you make .bas to .exe
I am trying to make .bas to .exe or maybe into an installation file so that when the user installs the .exe, it actually shows on the computer and when the user uninstalls the .exe, it removes the file from the computer.
is there any way of doing it?
thanks
is there any way of doing it?
thanks
- Sat May 27, 2006 7:00 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How to make a ball bounce in a parabola?
- Replies: 6
- Views: 9947
How to make a ball bounce in a parabola?
How to make a ball bounce in a parabola after the ball reaches the bottom of the screen? I wanted it to reach the bottom, bounce back up but not as high as the previous one and then reach the bottom of the screen and bounce back up in a parabola but this time lower than the previous height until the...
- Thu May 18, 2006 8:11 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Making a spider bounce in qbasic
- Replies: 8
- Views: 10048
i still cant get my spider to bounce at a certain angle
this spider is not done. could you check to see if there are errors? because i only could make it go up and down at a spot which is not what i wanted. cls SCREEN 12 highbounce = 460 lowbounce = 1 highx = 640 lowx = 1 count = 1 x = INT((highx - lowx + 1) * RND + lowx) y = INT((highy - lowy + 1) * RND...
- Thu May 11, 2006 7:37 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Making a spider bounce in qbasic
- Replies: 8
- Views: 10048
Making a spider bounce in qbasic
how do you make a spider bounce off the edge without leaving the screen?