Search found 16 matches

by Skyler
Sat Jan 30, 2010 8:30 pm
Forum: General Discussion
Topic: "Important message" PMs
Replies: 9
Views: 30619

"Important message" PMs

Hey guys,

If you get a PM with the title "Important message from the forum administration!", be warned--it's a fake. The link probably directs you to malware, though I didn't try it (for obvious reasons).

Skyler
by Skyler
Thu Mar 01, 2007 9:02 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Strings equaling another string??
Replies: 3
Views: 12939

You can't, as far as I know.
by Skyler
Mon Dec 04, 2006 12:43 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: scripting engine
Replies: 6
Views: 11812

Well, if Windows continually accesses your hard drive for its virtual memory, I don't see why it would be bad for you to continually open/close a file. The only "open file" problems you should run into are if you're trying to access the file at the same time your program is reading it.
by Skyler
Mon Dec 04, 2006 12:37 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: sprite editor prg
Replies: 4
Views: 15702

Nathan1993 wrote:Uhh... duh?
That was not an option. The options were: Variable, screen, and what.
by Skyler
Mon Dec 04, 2006 12:25 pm
Forum: News and Announcements
Topic: Attention!
Replies: 5
Views: 16962

Hmm...
by Skyler
Thu Nov 30, 2006 9:17 am
Forum: Freebasic Questions & Answers
Topic: freebasic compiling problems
Replies: 7
Views: 24228

1. Compile it in QBASIC.
2. Get a different version of FB.
by Skyler
Thu Nov 30, 2006 9:13 am
Forum: QBASIC and QB64 Questions & Answers
Topic: sprite editor prg
Replies: 4
Views: 15702

Overflow... Would that be a variable overflowing, or the screen, or what?

EDIT: Remark removed, if you have issues send me a PM. -Z!re
by Skyler
Thu Nov 30, 2006 9:10 am
Forum: QBASIC and QB64 Questions & Answers
Topic: how do i copy and paste in QBASIC?
Replies: 5
Views: 11345

In most versions, I think you just right-click on the screen in windowed mode. That's what I do... Win2K I think.
by Skyler
Thu Nov 30, 2006 8:55 am
Forum: News and Announcements
Topic: Attention!
Replies: 5
Views: 16962

Where can I find some fugitives?
by Skyler
Tue Aug 29, 2006 11:46 am
Forum: General Discussion
Topic: $1000 Reward
Replies: 36
Views: 61896

Z!re: I have a challenge for you.
Show me some passages where the Bible contradicts itself.
As for the computer, Jesus said, "Go ye into all the world and preach the Gospel"- and a computer is much faster than walking.
by Skyler
Tue Aug 29, 2006 11:40 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Q Basic ?????????
Replies: 13
Views: 22988

Hmm... I thought autoexec.nt was the same for almost all xp installs...
What kind of school are you going to?
by Skyler
Tue Aug 29, 2006 11:36 am
Forum: News and Announcements
Topic: Operation - Quick Basic, Beginners Tutorial is being made!
Replies: 6
Views: 18354

Hmm...
Are you planning to release it as just TXT or html and pdf as well?
by Skyler
Mon Aug 28, 2006 4:03 pm
Forum: General Discussion
Topic: $1000 Reward
Replies: 36
Views: 61896

$1000 Reward

$100 USD to the first person who can prove the theory of evolution to be true.
by Skyler
Mon Aug 28, 2006 3:59 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: reading inividual letters
Replies: 5
Views: 8485

input a line, then:

Code: Select all

for x = 1 to len(line$)
   y$ = mid(line$, x, 1)
   'add y$ to counter here
next x
I think thats how to make mid select one char. if not, reverse x and 1 in mid$().
by Skyler
Mon Aug 28, 2006 3:52 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: return values
Replies: 3
Views: 7207

Do you mean

Code: Select all

RETURN 0
?
by Skyler
Mon Aug 28, 2006 3:50 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Pointers, PEEKing, and POKEing
Replies: 5
Views: 9989

Cons:
I dont know how to use them.
Pros:
There is an entry in the help file.