Computing.Net > Forums > Programming > Qbasic

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Qbasic

Reply to Message Icon

Name: Jason
Date: December 17, 2001 at 17:32:32 Pacific
Comment:

I do not no anything about programming, so I posted up a messege awhile back to see what would be a good beginning. Someone replied with Qbasic, what I want to know is, what kinds of things can I do with Qbasic? And then what would be the next step?



Sponsored Link
Ads by Google

Response Number 1
Name: Ronin
Date: December 17, 2001 at 20:29:24 Pacific
Reply:

In general a lot of dos programming, but fairly easy to learn so it's good for a beginner.

All versions of MS dos and most versions of windows come with one form or another of either basic or qbasic type of interpreter. If you want to build EXEs, you'll need a compiler.


0

Response Number 2
Name: klaus
Date: December 18, 2001 at 00:29:02 Pacific
Reply:

jason,
qbasic as mentioned before is simple to learn. to find out what you can do there is excelent help coming with qbasic with a lot of emaples.
if you want to write macros (ms office) you will find a lot of commands with visualbasic (VB) similar to qbasic.
What to do next depends on you. maybe you have heard about java or perl. both of them are free and there are a lot of examples to.

the choice and what to do next depends on what you want to do your program.
klaus


0

Response Number 3
Name: matt
Date: December 21, 2001 at 02:14:41 Pacific
Reply:

a simple program would be moving a text file from one place to another :-

dim file1 as string
dim file2 as string

file1="c:\temp.txt"
file2="c:\temp\temp.txt"
name file1 as file2

or a more advanced program would be :-
(this will be print contents of file to screen)

dim file1 as string
dim file2 as string

file1="c:\temp.txt"

open file1 for input as #1
do while not EOF
line input #1, rec$
print rec$
loop
close #1


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Programming Forum Home


Sponsored links

Ads by Google


Results for: Qbasic

seed number in Qbasic www.computing.net/answers/programming/seed-number-in-qbasic/583.html

Qbasic 4.5 www.computing.net/answers/programming/qbasic-45/5069.html

QBasic trouble...subroutine www.computing.net/answers/programming/qbasic-troublesubroutine/7366.html