I know qbasic 1.1, QB4.5, 7.1, Turbo Basic, YaBasic, XBasic, VB, GWBasic, BWBasic (freedos), PeterBasic (FreeBSD), VBDOS 1.0 (Pro and Std), RapidQ, and other basics...
I can do almost "everything" with QB 7.1 + Future Library.
I´m learning C++. I´m just Beginning.
With GCC + Allegro Library ...
Search found 6 matches
- Wed Sep 01, 2004 2:43 am
- Forum: QBasic / QuickBasic related
- Topic: Looking for floppies
- Replies: 5
- Views: 1733
- Thu Aug 26, 2004 8:51 pm
- Forum: QBasic / QuickBasic related
- Topic: Looking for floppies
- Replies: 5
- Views: 1733
Re: Looking for floppies
Why you need it?
You wil never use this knowledge in your professional carrer (i think).
Perhaps... Visual Basic, KBasic... but not QBasic.
You wil never use this knowledge in your professional carrer (i think).
Perhaps... Visual Basic, KBasic... but not QBasic.
- Thu Aug 26, 2004 8:41 pm
- Forum: QBasic / QuickBasic related
- Topic: PRINT USING
- Replies: 2
- Views: 1138
Re: PRINT USING
Post your code here and we will help you.
- Sun Jan 18, 2004 2:06 am
- Forum: QBasic / QuickBasic related
- Topic: VBDOS Scope, newbie question
- Replies: 3
- Views: 1311
Re: VBDOS Scope, newbie question
Thank you Frankiebaby!
I found the right code.
In this faq, if anyone want to know:
http://www.dossolutions.pwp.blueyonder.co.uk/vbfaq.html
Thank you!
H8OR
I found the right code.
In this faq, if anyone want to know:
http://www.dossolutions.pwp.blueyonder.co.uk/vbfaq.html
Thank you!
H8OR
- Sun Jan 18, 2004 1:06 am
- Forum: QBasic / QuickBasic related
- Topic: VBDOS Scope, newbie question
- Replies: 3
- Views: 1311
Re: VBDOS Scope, newbie question
No, wrong.
"DIM SHARED" doesn't work!
"COMMON SHARED" doen't work!
"COMMON" doen't work!
See part of my code:
------------------------------------
REM This is the "start file"
TYPE Registro
Name as STRING * 34
END TYPE
DIM SHARED People as Registro
------------------------------------
REM ...
"DIM SHARED" doesn't work!
"COMMON SHARED" doen't work!
"COMMON" doen't work!
See part of my code:
------------------------------------
REM This is the "start file"
TYPE Registro
Name as STRING * 34
END TYPE
DIM SHARED People as Registro
------------------------------------
REM ...
- Tue Jan 13, 2004 4:43 pm
- Forum: QBasic / QuickBasic related
- Topic: VBDOS Scope, newbie question
- Replies: 3
- Views: 1311
VBDOS Scope, newbie question
In VB for windows, we have these reserved words: "PRIVATE" and "PUBLIC".
But not in VBDOS.
So, how to make variables visible in all modules?
I need an Example.
Thank.
But not in VBDOS.
So, how to make variables visible in all modules?
I need an Example.
Thank.