Search found 2466 matches

by burger2227
Sun Jan 06, 2008 4:12 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: INP and OUT Port
Replies: 37
Views: 65773

S0 is not used except when the port is in EPP mode, so the port is messed up somehow. There is no pin for S0 to S2 , but it would only add 1 if checked. That means that S1 and 2 are also being read as on or a total of 7 is added: 1 + 2 + 4 = 7. That explains the problem! Since our program and circui...
by burger2227
Sun Jan 06, 2008 4:04 pm
Forum: General Discussion
Topic: Code exchange subforum?
Replies: 13
Views: 22472

True Pete

Will I have to include your name in them Ruby?

Ted
by burger2227
Tue Jan 01, 2008 4:20 am
Forum: General Discussion
Topic: For those of you who follow the Gregorian calendar...
Replies: 5
Views: 10546

What a party! STFU! Did I say that out loud? Have a good 2008 and whatever calendar year!

Ted
by burger2227
Mon Dec 31, 2007 8:57 am
Forum: QBASIC and QB64 Questions & Answers
Topic: String$ and Variables?
Replies: 5
Views: 11821

Sounds like Scrabble to me. You can assign each letter your own value in a SELECT CASE routine that reads the word one letter at a time using: FOR start = 1 TO LEN(word$) letter$ = UCASE$(MID$(word$, start, 1)) SELECT CASE letter$ CASE "A": score = 6 'rest of letters END SELECT Total = Tot...
by burger2227
Sat Dec 29, 2007 12:31 pm
Forum: News and Announcements
Topic: Qbasic Station down!?
Replies: 14
Views: 32137

Well, the button would come up on the timeout screen like FireFox does. Would that be too hard to do? M$ as usual, would rather hide the obvious and make the user suffer, because they think that they are GOD! All it would take is for the original page address to be saved for a reuse. Last nite I los...
by burger2227
Fri Dec 28, 2007 7:53 pm
Forum: Freebasic Questions & Answers
Topic: FreeBASIC Games Directory updates (22.03.2008)!
Replies: 28
Views: 91262

Roy, Pete has both FB and QB users on his forums. There is no special area for either to go.

So unless Pete adds a new Forum for FB only, they have a right to post here. I wish that Mac would create one for them too, so that there is less flaming.

Ted
by burger2227
Thu Dec 27, 2007 8:16 pm
Forum: News and Announcements
Topic: Qontest 1 - Create a Crossword creator
Replies: 12
Views: 26859

OK, I believe you, but what you are asking for is by no means easy. You would still have to choose the words and clues. Then you would have to set the boxes and blanks up with numbers in them. You would probably be better off making one on a grid paper and entering the data. Having the program do it...
by burger2227
Thu Dec 27, 2007 8:02 pm
Forum: News and Announcements
Topic: Qbasic Station down!?
Replies: 14
Views: 32137

Refresh button? I have an addon for auto refresh that takes up an entire row in the header. What happens when you type a long reply and you go to post it and you get that stupid message? RETYPE IT ALL AGAIN or copy it every time just in case it fails! IE7 and previous versions should have had a retr...
by burger2227
Thu Dec 27, 2007 1:29 pm
Forum: News and Announcements
Topic: Qontest 1 - Create a Crossword creator
Replies: 12
Views: 26859

Lee, from what I have seen, you should be the LAST person to run a contest of any kind. You barely know how to do anything now! To make a contest, you should already have your code close to done first. And who really would do it anyhow? I certainly do not need to make one. I don't have time to make ...
by burger2227
Tue Dec 25, 2007 5:43 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: COLOR for screen 13
Replies: 16
Views: 21504

Yep we both are good at insults!

It seems to be going the other way! We are in a contest to see who is Worser LOL.
by burger2227
Tue Dec 25, 2007 5:38 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Libraries
Replies: 12
Views: 19760

To create a BI file, open Notepad and copy your original module Text Declares there. Then Save As. Click the dropdown box listed as Text and select ALL files and add .BI You can do the same thing for BAS files from text. Make sure to save your modules as Text Readable by other programs when saving t...
by burger2227
Tue Dec 25, 2007 5:25 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: COLOR for screen 13
Replies: 16
Views: 21504

I don't hate him either! But he does smell like something I hate even after I flush the toilet!

Admit it NOD! You made LEE up, didn't you? I saved that GIF, gotta love it!
by burger2227
Tue Dec 25, 2007 5:19 pm
Forum: News and Announcements
Topic: Qbasic Station down!?
Replies: 14
Views: 32137

As often as Jack goes there, it may be down a while!

Why doesn't IE7 ever have a Retry button like Firefox? Are they that arrogant? I HATE that stupid page to check my settings!
by burger2227
Tue Dec 25, 2007 4:04 am
Forum: QBASIC and QB64 Questions & Answers
Topic: COLOR for screen 13
Replies: 16
Views: 21504

STFU, Interrupt is a valid function built into the library

There is absolutely no reason to have to create a new library when QB45 has it there for the asking. Get real!

And I am your father, N! LOL

LEE are you really running a contest or begging for help? I would, but I think you are a figment of somebody's imagination and I already tried that road.

Ted
by burger2227
Tue Dec 25, 2007 3:31 am
Forum: News and Announcements
Topic: Qontest 1 - Create a Crossword creator
Replies: 12
Views: 26859

AFLACK

** **** ********!

Figure it out for yourself, when you and Nod learn how to program! This WILL be the LAST time I ever answer your posts! GRRRRRR!
by burger2227
Tue Dec 25, 2007 2:31 am
Forum: QBASIC and QB64 Questions & Answers
Topic: COLOR for screen 13
Replies: 16
Views: 21504

You and Nod have a better chance of getting married than either one of you can learn how to code! LEE , LEE, LEE? Do you know how to do anything on your own? I could help, but I am not going to encourage the idiot and your constant posts! However, I do like Penn........... and Teller. Great avitar! ...
by burger2227
Mon Dec 24, 2007 2:01 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: COLOR for screen 13
Replies: 16
Views: 21504

Here is an Interrupt SUB routine to print text with any color background: '$INCLUDE: 'QB.BI' DIM SHARED Registers AS RegTypeX SUB ColorPrint (text$, row%, col%, fc%, bc%) STATIC c$ = STRING$(LEN(text$), 219) 'string of solid BG characters Registers.ax = &H1300 'video service 13h, subfunction 0 R...
by burger2227
Mon Dec 24, 2007 1:49 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Libraries
Replies: 12
Views: 19760

LOL I gotta say!
by burger2227
Sun Dec 23, 2007 5:23 pm
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 73797

If you read this thread, I only posted that the OP could use DOSBOX and that QB64 is being made. I came back a few days later to find all of this BS by that retard Nodtvelt. He is an insult to everybody's intellegence so why should I not knock his idiotic statements. EK tried to reason with him, but...
by burger2227
Sun Dec 23, 2007 2:52 am
Forum: General Discussion
Topic: 64 bit QBASIC
Replies: 32
Views: 73797

DEMO 5 is already out

If you read the full thread, then you would understand my comments about FB. Personally, I do not like any programming language that is not fully backward compatable. That is the main problem with FB! It may start to be a big problem with VB too. M$ wants to make you pay for the privelidge! Nodvelt ...