Search found 41 matches
- Wed Mar 19, 2008 1:13 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Networking
- Replies: 3
- Views: 8301
- Sat Mar 15, 2008 11:08 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: ?????
- Replies: 7
- Views: 10842
Guess I've got no excuse for my mistake. I've been programming in Creative BASIC lately, very similar to QB/FB in console mode.
- Fri Mar 14, 2008 3:18 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: ?????
- Replies: 7
- Views: 10842
My way:
Code: Select all
CLS
DO
PRINT "Press key: ";
DO: k$ = INKEY$: LOOP WHILE k$ = ""
PRINT k$
LOOP UNTIL UCASE$(k$) = "Q"
END
- Fri Dec 07, 2007 9:01 pm
- Forum: Pete's QB Site News
- Topic: QB Express #26 Deadline: November 24th
- Replies: 37
- Views: 108366
- Fri Dec 07, 2007 1:29 am
- Forum: Pete's QB Site News
- Topic: QB Express #26 Deadline: November 24th
- Replies: 37
- Views: 108366
Mentat, how does www.mentat.ortise.com sound? I've got a new host for Ortise and it doesn't use the Wiki anymore. I'll probably use the Wiki again while I'm developing the new layout. I can have as many subdomains as I want as well as restricted FTP accounts. If you want me to set that site up for y...
- Fri Nov 30, 2007 12:00 am
- Forum: General Discussion
- Topic: What's the best way to fill in a triangle?
- Replies: 11
- Views: 18685
- Thu Nov 29, 2007 4:38 am
- Forum: General Discussion
- Topic: windows cursor control
- Replies: 4
- Views: 9130
- Thu Nov 22, 2007 6:00 pm
- Forum: News and Announcements
- Topic: Chronicles of Galia: The First Mission (New QB-Only game)
- Replies: 6
- Views: 13000
- Wed Nov 07, 2007 10:32 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: VB 6 Problem on WindowsNT
- Replies: 4
- Views: 7839
- Mon Oct 29, 2007 4:34 am
- Forum: Freebasic Questions & Answers
- Topic: FreeBASIC Games Directory updates (22.03.2008)!
- Replies: 28
- Views: 63979
- Mon Oct 29, 2007 12:20 am
- Forum: Pete's QB Site News
- Topic: QB Express #25 needs submissions!
- Replies: 34
- Views: 95370
- Wed Oct 10, 2007 4:36 am
- Forum: General Discussion
- Topic: is Qb dead?
- Replies: 21
- Views: 33432
To me QB is far from dead. I don't have much use for it anymore but today it popped up in my electronics class. I was very surprised that my teacher (quite an old fella) had experience in it, he was trying to show another keen student how to use QB and operate a 9-LED circuit through the serial port...
- Fri Sep 28, 2007 1:40 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Linux QBasic
- Replies: 6
- Views: 9858
- Tue Sep 25, 2007 1:40 am
- Forum: General Discussion
- Topic: is Qb dead?
- Replies: 21
- Views: 33432
NaTeDoGG, could please explain how you find Java syntax far simpler than QB? I feel that QB programmers should stick with QB if they are getting somewhere with it and enjoy using it. But they should move on if they're only sticking with QB to be "loyal" and acknoledge the fact that there are many Wi...
- Tue Sep 18, 2007 7:44 pm
- Forum: General Discussion
- Topic: favorite game
- Replies: 23
- Views: 38841
I didn't get into making QB/FB games because I liked those 'abandonware'/'oldschool' games. In fact I never played them. I only got into QB/FB/BASIC programming because it was the first language I learnt and enjoyed it. I obviously still program in BASIC, simply because I enjoy it, not because I wis...
- Mon Sep 17, 2007 3:26 am
- Forum: General Discussion
- Topic: favorite game
- Replies: 23
- Views: 38841
- Fri Sep 14, 2007 7:39 am
- Forum: General Discussion
- Topic: text adventures
- Replies: 10
- Views: 16979
- Tue Sep 11, 2007 8:47 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: RPG battle engine help
- Replies: 19
- Views: 18577
- Sun Sep 09, 2007 7:30 pm
- Forum: News and Announcements
- Topic: Palindromes
- Replies: 8
- Views: 15182
Code: Select all
[initialize]
usrInput$ = ""
[main]
cls
print action$
input usrInput$
if lower$(usrInput$) = "restart" then goto [initialize]
if lower$(usrInput$) = "quit" then end
action$ = usrInput$
goto [main]
- Sun Sep 09, 2007 7:21 pm
- Forum: News and Announcements
- Topic: Palindromes
- Replies: 8
- Views: 15182