Search found 107 matches

by RayBritton
Wed Mar 29, 2006 1:37 pm
Forum: General Discussion
Topic: Having serious problems
Replies: 10
Views: 18488

Take a break. Go out to see world, girls with miniskirts and take a beer.
can't the moment as i'm still in school
by RayBritton
Wed Mar 29, 2006 1:08 pm
Forum: General Discussion
Topic: Having serious problems
Replies: 10
Views: 18488

well about 1 or 2 ago, when i stopped using my pc
by RayBritton
Wed Mar 29, 2006 12:53 pm
Forum: General Discussion
Topic: Having serious problems
Replies: 10
Views: 18488

i haven't used a computer in ages(about a week or two), the only reason i use one is to program, and sometimes to use the net
by RayBritton
Wed Mar 29, 2006 12:14 pm
Forum: General Discussion
Topic: Having serious problems
Replies: 10
Views: 18488

Having serious problems

Hi, I am no longer interested in programming, I have quite a few projects to do, and I don't want to make them.
by RayBritton
Thu Mar 23, 2006 11:16 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Getting Key Codes
Replies: 6
Views: 11326

thanks
by RayBritton
Wed Mar 22, 2006 1:21 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Getting Key Codes
Replies: 6
Views: 11326

if i press ctrl+left i get 115 so is that CHR$(0)+CHR$(115)
by RayBritton
Tue Mar 21, 2006 12:54 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Getting Key Codes
Replies: 6
Views: 11326

unforunatly that page is of no use to me, thanks anyway but i found a page that says Ctrl+Left is 0 115 00 73, how can i test what key was pressed against this?
by RayBritton
Mon Mar 20, 2006 11:47 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Getting Key Codes
Replies: 6
Views: 11326

Getting Key Codes

Hi, I most of the key codes, and i was wondering what the key codes for Ctrl+Left and Ctrl+Left, and how do people get them
by RayBritton
Fri Mar 17, 2006 2:40 am
Forum: QBASIC and QB64 Questions & Answers
Topic: CALL ABSOLUTE
Replies: 7
Views: 9155

i think that you need qb.lib while you are using the interpreter, but i could be wrong
by RayBritton
Wed Mar 08, 2006 10:53 am
Forum: General Discussion
Topic: idea for random number generator...
Replies: 5
Views: 10991

makes sense, quite a good idea, could always just use PI though
by RayBritton
Mon Mar 06, 2006 4:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: HOW TO READ FILE IN .DOC?
Replies: 6
Views: 8866

Microsoft Word, Wordpad
by RayBritton
Sun Mar 05, 2006 5:03 am
Forum: QBASIC and QB64 Questions & Answers
Topic: 'Fake' events
Replies: 3
Views: 5966

'Fake' events

Hi, people keep saying that QB's events are 'fake', i was wondering why are they fake.
by RayBritton
Sat Feb 18, 2006 12:31 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: A few questions...
Replies: 4
Views: 7577

thanks
by RayBritton
Sat Feb 18, 2006 7:59 am
Forum: QBASIC and QB64 Questions & Answers
Topic: A few questions...
Replies: 4
Views: 7577

A few questions...

Hi i have a few questions which are:
1)Is there anyway of limiting the numbers that varibles can get (no?)
2)What does RANDOMIZE do, that effects RND
3)In the Subs/Functions menu there are numbers after the name, what do they mean?

Thanks
by RayBritton
Mon Jan 30, 2006 4:37 am
Forum: Pete's QB Site News
Topic: QB Express #18
Replies: 10
Views: 30618

YAY!
by RayBritton
Thu Jan 26, 2006 2:49 am
Forum: General Discussion
Topic: Hey! Vote in the poll!
Replies: 8
Views: 10204

umm i cna't see the best qb mag ever on there (probably)
by RayBritton
Sat Jan 21, 2006 3:18 am
Forum: QBASIC and QB64 Questions & Answers
Topic: help on limiting keys
Replies: 29
Views: 49069

i mainly use

Code: Select all

do
key$=inkey$
loop until key$ <> ""
by RayBritton
Tue Jan 17, 2006 2:24 am
Forum: QBASIC and QB64 Questions & Answers
Topic: loading excel files
Replies: 14
Views: 20645

it is possible but realistically no
by RayBritton
Wed Jan 11, 2006 2:51 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with program
Replies: 4
Views: 6408

i was going to have a else statement but that would be impossible as every number is covered
by RayBritton
Tue Jan 10, 2006 2:26 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with program
Replies: 4
Views: 6408

this might help: if score =<500 then print "Message 1" elseif score =<1000 then print "Message 2" elseif score > 1000 then print "Message 3" end if you probably will want something more complex than just print "Message 1" =< means equal to and/or lower => mean...