i heard some men like it firm but some men like it soft...more cushion for the pushin right? anyways, i posted pics of my ass in a sex thong to try to get a...
Lmao. As little as this has to do with qbasic, i do like a woman with a soft ass. thanks for asking....
JAGSOFT5@...
Mar 5, 2004 4:44 am
2504
careful, you'd be surprised that many of these posters are not even women but gays trying to suck in unsuspecting folks here on the internet. I like 'em both...
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 : / Excellent Info...
qbasic@yahoogroups.com
Mar 15, 2004 6:16 am
2507
hello, I haven't been programing for 13 years, and I found I have forgoten many things ( know 4 other languages). I have a big question.... how do you...
Hello, this is Daniel Carpenter-Gold, writing from the good ol' state of Maine. Anyways, I am just beginning to program games in QBasic, and I was wondering if...
Oh come on, Qbasic is far more useful than simply to make stuff. It teaches basics in programming in a basic english like syntax. It is an extreme stepping...
hello everybody. In an attempt to write a VB program I have gone back to qbasic for the functionality part of it. And here is where I need your help. Though...
I am a beginner in using qbasic and I'm currently taking a class. I problem have me stuck (Writing a problem using a nested FOR....NEXT loops to output a...
Never mind, I think this will do it: CLS FOR outer = 1 TO 4 ' this is to stop it or it would keep going to bottom row = 1 column = 39 char$ = "*" ' or chs$(42)...
On stardate Wed, 07 Apr 2004 19:35:29 -0000, Captain erskinerob spake ... It's always better to write code that can be easily understood six months down the...
On stardate Thu, 8 Apr 2004 14:11:50 +1000, Captain Michael Marquart spake ... and an updated one - I enjoyed this little task, even if the end result is a...
I guess I should introduce myself: My name is Erskine and I'm both a Budget Analyst and Junior Network Analyst (how I got that, I don't know) for the National...
Thanks Mike. I really appreciated your ideas. I was always told that my programs need to be more efficient. I need to learn to think logically. BTW this is my...
Hi! I'm new to the group and only have limited BASIC and QBASIC experience. What I am trying to do is to generate text files using Wordpad or some other word...
... Couple of items - line 5 needs the ; between items and filename$ was quoted, which was the problem. 5 CLS : ENVIRON "PATH=A:\BRADY1;A:\QBASIC": d = 1 10...
I don't think you could offend anyone here by asking questions. I mean even asking how to print text on the screen is a valid question of the person just...
I need to read and write binary file at a byte level.. I have been able to read data at binary level and store it in another file, but when I try to create...
... You need to store it as a chr$ vlaue. DIM b AS STRING * 2 OPEN "testfile.bin" FOR BINARY AS #1 FOR i = 1 TO 255 b = CHR$(i) PRINT b PUT #1, i, b NEXT i ...
On stardate Tue, 13 Apr 2004 01:22:52 +1000, Captain Michael Marquart spake ... I was a bit quick off the mark - I assume you want the following which stores...