Search found 110 matches

by izidor
Sun Nov 22, 2009 1:40 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Reading from a line
Replies: 2
Views: 6458

Reading from a line

Before in my BASIC language one command was separated in few lines like: line 10 10 200 200 1 and now I want to make it like this: line>10,10,200,200,1 . I thought to do it with RIGHT$, LEFT$ and MID$, but there are more variables and they can have different values like 10 and 100 (but this could be...
by izidor
Sun Nov 01, 2009 6:22 am
Forum: General Discussion
Topic: Lockerz
Replies: 4
Views: 12363

Yes, but on many forums admins don't like people who promote this kind of stuff. Are you interested?
by izidor
Sat Oct 31, 2009 2:38 pm
Forum: General Discussion
Topic: Lockerz
Replies: 4
Views: 12363

Lockerz

Recently i got invited to this site Lockerz (www.lockerz.com), on the site you can collect points by anwsering questions and inviting youjr friends. You can exchange your points with real items. If you want an invite PM me. For people who think that this is total bull **** please do not comment. And...
by izidor
Fri Oct 02, 2009 1:52 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Guess who's back
Replies: 3
Views: 6965

Ok but that doesn't solve the problem.
by izidor
Wed Sep 30, 2009 2:28 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Internet
Replies: 3
Views: 16092

Internet

Is it possible to create a online game? In the other words is it possible to access internet?




Izidor
by izidor
Wed Sep 30, 2009 2:05 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Guess who's back
Replies: 3
Views: 6965

Guess who's back

I'm back with my questions :D Here is my (QB64) problem, obviously i want to create a box by clicking LMB. Can anyone help? And to Pete in the future is there going to be "QB64 Questions & Answers" forum or sub-forum or how the heck is that called? SCREEN 9 _MOUSESHOW DO DO LOOP WHILE ...
by izidor
Thu Sep 24, 2009 3:15 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Windows Vista and QB45
Replies: 20
Views: 64102

First off you posted you topic in the wrong place, you should have posted it in "QBASIC Questions & Answers" but ok. As far as I know you can run your programs on Vista but you can't use graphics so it's pointless, but you can check out QB64. Basically it's compiler for BASIC code (QBA...
by izidor
Sat Sep 12, 2009 11:18 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Solved!
Replies: 8
Views: 22557

I apologize if you really think so.
by izidor
Sat Sep 12, 2009 8:36 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Solved!
Replies: 8
Views: 22557

Really?
I always thought it can't be solved.
Good for you! :)
by izidor
Sun Sep 06, 2009 2:52 pm
Forum: General Discussion
Topic: Dragon Stone Quest
Replies: 12
Views: 22172

I used http://www.weebly.com/ you don't have to upload your code, you can use their sample's and add photos,downloads... But only bad thing is maximum file size must be 5mb or 8 I'm not sure. Note that this is a sub domain! http://www.example.weebly.com But if you ever write your page you can go to ...
by izidor
Sat Aug 29, 2009 5:12 pm
Forum: General Discussion
Topic: Dragon Stone Quest
Replies: 12
Views: 22172

Dragon Stone Quest

So coma8coma1 when are we going to see Dragon Stone Quest, I am interested because it seems like an nice game and it is going to the first big QB64 game (if I am not wrong).
coma8coma1 do you have an website so people can see your other work if there is any?
by izidor
Sat Aug 29, 2009 4:57 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Windows
Replies: 6
Views: 11701

@Nodtvedit I am sorry but really do not understand it (" Shouldn't you be using the same coordinates for your back as you do for your window?"),why would be need to move a window if it is big as the whole screen? @burger2227 Yeah, it's very strange. Are people from phpBB group perverts? :)
by izidor
Sat Aug 29, 2009 2:42 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Windows
Replies: 6
Views: 11701

Windows

It's me again! (who would say) I am having trouble with PUT statement and I really can't (i do not know how, English isn't my mother language) explain what is the problem so if anyone has some time to look at it I'd be really thankful. QB64 code! SCREEN 9 LINE (100,100)-(300,200),2,BF GET (100,100)-...
by izidor
Wed Aug 26, 2009 5:57 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Mouse cursor
Replies: 4
Views: 10216

Yes! Thank you coma8coma1. Here is what I did (in QB64). SCREEN 9 DIM SHARED back _MOUSEHIDE LINE (0,0)-(640,350),2,BF LINE (0,350)-(640,40),6,BF LINE (0,0)-(640,350),3 GET (0,0)-(639,349),back DO DO LOOP UNTIL _MOUSEINPUT CALL redraw cur=_LOADIMAGE("cursor.png") ' 16 * 16 cursor _PUTIMAGE...
by izidor
Tue Aug 25, 2009 7:49 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Mouse cursor
Replies: 4
Views: 10216

Mouse cursor

How to set a different mouse cursor?
by izidor
Tue Jul 14, 2009 8:43 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Me again
Replies: 5
Views: 8604

I am trying to create text editor.
by izidor
Sun Jul 12, 2009 12:15 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Me again
Replies: 5
Views: 8604

Code: Select all

OPEN "file.txt" FOR INPUT AS #1
 a$=INPUT$(LOF(1),#1)
PRINT a$
CLOSE #1
This works fine, but are there any ideas for the first one?

Thanks
by izidor
Fri Jul 10, 2009 7:20 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Me again
Replies: 5
Views: 8604

Me again

First:

Why a string has fixed number of characters?
I tried this:

Code: Select all

DIM s AS STRING * 10000
INPUT a
But the text stops at 4 row.

Second:

How to open whole text not just one row with OPEN statement?

Code: Select all

OPEN "abc.txt" for input as #1
input #1,a$
print a$
by izidor
Fri Jul 10, 2009 6:02 am
Forum: QBASIC and QB64 Questions & Answers
Topic: Arrow menues
Replies: 7
Views: 11988

Wow, that's great! Thank you! :D

EDIT: I know how to edit column but how to change row of ">" ?
by izidor
Thu Jul 09, 2009 2:26 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Color system
Replies: 10
Views: 13051

That's true what you are talking about.
I just take and take but never give. But did you ever wonder why maybe because I need to learn, I want to make big things but i can barely do an easy LOOP.