Geometry.Net - the online learning center
Home  - Basic_Q - Qbasic Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 114    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Qbasic Programming:     more books (100)
  1. Easy Programming With Qbasic by Tory Stephen Toupin, 1994-09
  2. Qbasic: An Introduction to Programming by Gary B. Shelly, Thomas J. Cashman, et all 1996-01
  3. Crash Course in QBASIC (Programming series) by G. Perry, 1993-01
  4. Intermediate Computer Programming
  5. Introduction to Program Design with QBasic (College Custom)
  6. Introduction to Computer Programming with Qbasic by Richard W. Carney, 1998
  7. BASIC Programming for the I. B. M. Personal Computer by George Diehr, T. Barron, 1987-04-29
  8. Programming in Vax-Basic (Addison-Wesley series in computer science) by Joseph Guay, 1985-05
  9. Vax-II Basic by Design: Structured Programming in Basic by Andrew Kitchen, 1987-01
  10. The Revolutionary Guide to Qbasic by Victor Munerman, Evgeny Yemelchenkov, et all 1996-02
  11. Introduction to Computer Programming With the Basic Language by Harvey M. Deitel, 1977-08
  12. ADVANCED QUICK BASIC 4.0 (Programming Library) by Murray Lesser, 1988-04-01
  13. Programming Logic with QBASIC: A Workbook of Business Programming Applications by John Scott, Kristie Lynn Higgins, 1993-03
  14. Complete Computer Concepts and Programming in Microsoft Qbasic (Shelly Cashman Series) by Gary B. Shelly, Thomas J. Cashman, et all 1994-06

21. The BASIC Archives - Links
Beginners Basic complete online qbasic programming tutorial. QBasic Programs - NFL simulation, stock market simulation, and other custom programs
http://members.fortunecity.com/manixtt/old_links.html
web hosting domain names photo sharing
home
... contact us Links
Last Updated: August 24, 2003 What's New in Links
Digital Paradox Software - Developers of Cataclysm's Eve and other incredible QB feats! A B C D E F G H I ...
  • Acid Works Software - QBasic site with programs, games, and links.
  • Ainsworth Computer Seminars
  • Akarsha Kumar
  • Aki's Worlds
  • Akujin's Homepage ...
  • All Basic Code - a European distribution site of the bi-monthly ABC packets [All Basic Code]. The PowerBasic archives.
  • All Basic Code (ABC) - A collection of PD source codes ranging from QB/QBasic/PDS/PB/VB/ASIC and even some assembly code for advanced BASIC programmers. Very large collection of BASIC.
  • Ample Productions
  • Andreas Great and Funnny Qb Page - Uh-huh....
  • Andreas' Homepage
  • Andreas Qbasic Page
  • Andrew's Home Page
  • Andrew's QBasic Page ...
  • BASIC Archives - No, not us! The more resourceful archive.
  • Basic Gurus
  • Basix Fanzine - for programmers who love BASIC, and would like to learn more about it. Tips, tricks, and answers to questions here. A new issue is made every month or so.
  • Beginners Basic - complete online QBasic programming tutorial. Excellent reference for all basic programmers.
  • 22. MajorGeeks Support Forums - Qbasic Programming Trouble (again)
    This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http//www.vbulletin.com/ .
    http://forum.majorgeeks.com/archive/index.php/t-13782.html
    MajorGeeks Support Forums Programming PDA View Full Version : qbasic programming trouble (again) ashykatia Hey there, long time no see, all. I want you all to know that helped me last time that the rounding trouble I had was easily recitified with a "PRINT USING" statement. Well, onward and upward.....
    I am know in the deep throes of programming hell, and I welcome it, but this one has me pissed and aggravated.
    I have to write a program that recognizes a palindrome.(same word OR sentence forward and backwards). I have the code witten what I thought was perfect. The first time I run the program, it turns out OK. But the next time through, it tells me the same word I had just entered isn't a palindrome. It has me unnerved. Here it what I have:
    FOR count = LEN(palin$) to 1 step - 1
    palin1$ = MID$(palin$, count, 1)+palin1$
    NEXT
    IF palin1$=palin$ THEN
    PRINT"you have entered a palindrome"
    ELSE
    PRINT "nope, try again"
    END IF What did I do wrong Thanks....you are all great iamien Try having it read the entered word backwards, then testing for equality.

    23. The QBasic Station - QBasic Links (General)
    A powerful, friendly resource for your qbasic programming, with tutorials, advice, articles, games, source code, and other downloads.
    http://www.qbasicstation.com/index.php?c=l_links

    24. Pete's QBASIC / QuickBasic Site
    qbasic programming For Kids, A beginner s tutorial aimed at a younger audience. qbasic programming Tutorial, A brief introduction to QBasic tutorial
    http://www.petesqbsite.com/sections/tutorials/beginners.shtml
    Home QB News Reviews Downloads ... Message Board
    Main Sections
    Home
    Site Updates

    QB News

    Programs
    Reviews

    Downloads

    Projects

    Top Ten
    ...
    Articles

    Links Links Old Links Affiliates Webrings Magazines QB Express QB Zines QHumor Philosophy ... Old Sections Learn QBasic What is QBasic? Tutorials Beginners Assembly ... Challenges Interact Message Board QBChat Contribute QB News Content Monthly Poll Site Info History About Pete Awards Awards Five Star Award Old Awards Link to us ... Contact Affiliates V Planet! NeoBasic QBasic News QB45.com ... FreeBasic.net Beginner Tutorials TUTORIALS Beginners Assembly Game Design ... Pete's Tuts These are tutorials meant to introduce new programmers to QBASIC programming. These cover the most basic techniques and are meant for complete novices. In addition to these Beginner Tutorials, Pete's QB Site also has its own original Beginner Tutorials series written by Pete, available here . More advanced tutorials can be found in the other tutorials sections. Introduction to QBASIC Programming Link Description Author Beginner's Tutorials: Chapter 1 - Beginning Commands Covers PRINT, INPUT, and PRINTing variables.

    25. QBasic Programming Tutorial 1
    QBasic takes you back to DOS and you see your program in the upper right you execute your program..you still see the text from DOS..like C/QBasic
    http://www.petesqbsite.com/sections/tutorials/tuts/sskaton/tutorial1.html
    Tutorial #1
    The first thing we must do, and the most important thing is boot up QBasic..once done we can start! Now, the very first program that we are going to write is very primitive, and it's useless, but it is critical that we go threw all these steps..Type the following:
    PRINT "Hello, this is my first program!"
    Once done you are ready to execute the program, the easiest way of doing this, you don't have to do it this way, but it is easiest, and fastest is by pushing the F5 key, now. After that has been accomplished, QBasic takes you back to DOS and you see your program in the upper right corner "Hello, this is my very first program!"
    Now, a common problem, is that when you execute your program..you still see the text from DOS..like C:/QBasic if that happens, don't freak out. The way you handle that problem is by typing in the CLS command.Type the following:
    CLS
    PRINT "Hello, this is my second program!"
    All this did was get rid of all the superflous commands in the background. Okay...so far you should not have had any errors, or mistakes..but if you did, try to figure it out, it is all on this tutorial. But if you are

    26. ThinkQuest : Library : Qbasic Programming
    ThinkQuest is an international competition where student teams engage in collaborative, projectbased learning to create educational websites.
    http://www.thinkquest.org/library/site.html?team_id=25871

    27. What's New On JHB Web Page
    The qbasic programming Source Codes page has been updated. The qbasic programming Source Codes This page contains source codes of Qbasic programs.
    http://pages.intnet.mu/jhbpage/whatsnew.htm
    Home About What's New Programming ... Estelle's Page
    What's new on JHB Web Page
    Check out the Projects page to see what's next on JHB Web Page April 21 2002
    I have added a VBDOS page . There's not much for the moment being. I'll be adding more later. April 15 2002 I have updated my Qbasic Tutorial for Beginners and Children. It should be completed by the beginning of May. April 1 2002 I have added a projects page section. It contains information about any forthcoming entry to the site. March 10 2002 I have added more applications to the download page. February 20 2002 I have redesigned the page to make navigation become easier. February 10 2002 I have updated Estelle's page . It contains drawings made by a 8 year old child. The Linux section has been updated January 06 2002 I have updated the logo programming page. Logo is a programming language accessible to young children. January 04 2002 Estelle's page has been updated December 2001 It's been nearly 4 years since I last updated this page. I have removed some sections that I no longer maintain and will add new fields of interests. New sections on my web page: Pascal programming
    C/C++ programming
    The Rapid-Q programming environment
    The Linux operating system
    Estelle's Page I have also updated the following sections: My programs
    Qbasic
    Logo Saturday 31 January 1998 A Menu in 10 lines . That's the title of a Quick Basic Library in development. I have uploaded version 0.5 of the library. Its aim is to help Quick Basic 4.5 programmers to include a keyboard/mouse driven menu easily in their application.

    28. CMP 521 - Programming Page
    qbasic programming Assignment List QBASIC Part 2 Dates TBA. 13. Manual Complete Programming Assignment 4 File Name SQUARE.
    http://www.edu.pe.ca/morellhigh/cmp521/qbasic/qbasic.htm
    Morell Regional High School
    Computer Studies 521
    Second Semester 2005 Programming with QBasic Return to Class Page Resource Material What is Qbasic Programming? QBASIC NOTES ONLINE QBASIC EXERCISES Note: The Qbasic Manual is also online in the S: drive. Qbasic Programming Assignment List Description Assignment Date QBasic Student Manual - Pages 2 to 7. Read and Make notes on the material. February 28, 2005 Manual - Typing your first program. Pages 8-10. File Name: CIRCAREA.BAS. Save this file in you Qbasic Folder. March 3 Go to QBASIC EXERCISES link above. Complete Exercise #1 March 4 Go to QBASIC EXERCISES link above. Complete Exercise #2 March 7 Algorithms Assignment March 14 Manual - Complete Programming Assignment #1 on Pg 12. File Name: TAX.BAS Paperwork should be submitted according the forms located on the back shelf in the lab or in our QBasic Folder on S: Drive March 16 Go to QBASIC EXERCISES link above. Complete Exercise #3 March 16 Go to QBASIC EXERCISES link above.

    29. QBasic For Students Book From Books.co.uk
    this text assumes a problemsolving approach to qbasic programming concepts. QBASIC program; entering the program; executing the program;
    http://www.books.co.uk/qbasic_for_students/0070652619.html
    Author, Title, ISBN Author Title All Categories
    QBasic for Students
    View larger image Author(s): Trombetta, Michael (Queensboro Community College, USA) Format: Hardback ISBN: RRP: (checkout best prices) Where are you? [ UK US Global store stock level item price delivered fetching... fetching... fetching... fetching... Delivery Prices are based on the minimum cost of delivery for a single item.
    Synopsis
    Categories
    Info
    Series Title N/A Series NO N/A Edition N/A Country Publication: USA Publication Date: Publisher McGraw-Hill Education - Europe Page Length Page Size Part Number N/A
    Reviews: Author your own review!

    30. Qbasic Programming
    QBasic Overview QBasic Book; Chapter 1—Introduction to QBasic Miles per Gallon Chapter 6—Modularizing Programs QBasic Procedures for Block Graphics
    http://lyman.dtc.millard.k12.ut.us/cp/QBasic/QBASIC.HTM
    QBasic Programming
    QBasic , West Publishing, 1992 My email address is carl.lyman@m.millard.k12.ut.us

    31. ~ Home ~ MSC College ~ MSC High School ~ MSC Internet ~ San Pablo
    ComputerWorld Programming Quick BASIC and qbasic programming language. qBasic Gamerz Society - Lots of files, links, qbasic programming advice,
    http://msc.edu.ph/studyguide/basicprog.html

    32. Book QBasic
    qbasic programming using software engineering techniques (College custom series), Qbasic A 860496, qbasic programming 101 Greg Perry Price Comparison
    http://books.idealo.com/1784R144C10K0-Computers-Internet-Programming-Languages-T
    BOOKS PROGRAMMING QBASIC BOOKS PROGRAMMING QBASIC Ada Assembly Language Programming Borland Delphi C# CGI Programming Cobol Compiler Design Compilers Compression Cryptography Debugging Delphi Dylan Programming Eiffel Fortran Java Lisp Pascal Pascal - Turbo Perl Prolog Python QBasic RPG Smalltalk TCL UML VBA Visual Basic Visual Basic Introduction PRODUCT SEARCH Books Music DVD Software VHS MORE PRICE COMPARISON HOMEPAGE MUSIC VIDEOS/DVD SOFTWARE Books BOOKS-CHARTS - QBASIC A B C D E F G H I J K L M N O P Q R S ... V W X Y Z Rank Thumb Product/Title Author Press Format Released QBASIC programming using software engineering techniques (College custom series)
    Compare prices Ellen Bailey Phelps McGraw-Hill Unknown Binding Qbasic: A Short Course in Structured Programming
    Compare prices Gary W. Martin Dryden Pr Paperback Instructor's manual and key for Mastering QBasic and QuickBasic
    Compare prices Bob Albrecht Glencoe Unknown Binding Qbasic
    Compare prices Mccomb Hardcover Structured QBasic
    Compare prices Steven C Lawlor s.n.] Unknown Binding Introduction to programming with QuickBASIC/QBASIC
    Compare prices Marilyn Meyer Prentice Hall Career Technology Unknown Binding Qbasic
    Compare prices Susan K. Baumann, Steven L. Mandell

    33. Ainsworth Computer Seminar - Programmers' Toolkit
    When you load this program using QBASIC, all the subs and commands are BAS, these subroutines and commands are added to the qbasic programming language.
    http://www.qwerty.com/toolkit.htm
    Programmer's Toolkit tips and techniques for beginning programmers The Toolkit is a collection of programs and subroutines that make it much easier for beginning programmers to create their own software using Microsoft QBASIC. If you are new to programming, you might want to start with the Really really basic BASIC course before using the Toolkit. This link also shows you how to find and install a free copy of QBASIC on your computer. Begin by running the program TOOLKIT1.EXE. If you have installed the seminar on your computer you can locate this program file and run it yourself. You can also just click this link Run the Toolkit 1 demonstration program. After you have run the program, you will want to run the original program code in QBASIC so that you and see how each step was done. You can then copy any of the program code and use it in creating your own programs. The Programs This collection of four programs illustrates the programming tools and gives you an easy method for selecting the colors and color combinations you can use in writing your software. TOOLKIT1.EXE

    34. Singapore Online Auctions - InterAuct! - Singapore's Premier Auction List Site S
    TITLE qbasic programming book(special edition), Item No 395055 This book focuses on programming in QBasic using structured programming techniques and
    http://www.interauct.com.sg/cgi-bin/item_auction.pl?client=interauct&itemno=3950

    35. Basicmain
    qbasic programming. Author. G. Maneke. Objective. To introduce students to QBasic computer programming, to give students a better understanding of how
    http://www.pineriver.k12.mi.us/ms/math/basicmain.html

    36. AntiOnline - QBasic Chapter Two
    Here is a qbasic program which uses the FOR statement ******* for.bas ******** Sequential files are a large part of qbasic programming and really easy
    http://www.antionline.com/tutorials/jump.php?277

    37. Chapter 1
    the qbasic programming language. If you are reading this, then it is most likely that you want to learn how to program in QBasic, and
    http://www.tcdn.teiher.gr/qb4all/tutorial/Chapter1.htm
    QBasic For All Tutorial Tutorial by Mallard
    E-mail Mallard at: mallard@gcomm.com
    HTML by Anatasios Yalanopoulos Chapter One
    Introduction
    Welcome to Basic Basic, a grouping of lessons on how to use
    the QBasic programming language. If you are reading this, then it
    is most likely that you want to learn how to program in QBasic, and
    have several questions. I hope to answer all of them and more in
    this book.
    First, you may be wondering what QBasic exactly is. Well, there
    is a simple answer - QBasic is a programming language written for
    computers back in 1975, by Bill Gates and Paul Allen, and has been the accepted standard ever since. Why? Because of its ease of use, its English-like commands, and its power. QBasic stands for Beginner's All-Purpose Symbolic Instruction Code. Several of its commands are pure English - PRINT, LET, and many others. It has a simple structure for its programs: its lines are numbered(10, 20, 30, etc.) and are executed in order.

    38. M \ K Productions
    Translate this page MKJamz Sound Blaster Kit, 30k, A complete library of QBasic source code for doing all qbasic programming EXAMPLES MISCELLANEOUS QBASIC PROGRAMS
    http://members.aol.com/mkwebsite/dl.html
    Home News UberNES Our Projects ... Previews LATEST PROGRAMS File Size Description This is a series of programs that demonstrates how to create a Doom-style 3D engine using 2D BSP trees. For a full description and screen shots, click here Version 1.1. These programs compress and decompress files in our new MKZ format using Huffman codes. The programs also display a lot of information while encoding and decoding. Definitely worth a look. Serpinski's Triangles Displays a fractal triangle pattern, also rotates, scales it, etc. Included are separate versions for screen modes 7 and 13.
    QBASIC GAMES File Size Description Screen Shot Pieces 2 Pieces 2 is a game in which you must put together jigsaw puzzles. It features a fully mouse-driven environment, 256 color digitized graphics, background Sound Blaster music, 4 puzzles, variable size puzzle pieces, load/save game capability, a hall of fame, and much more. No Tank War This game is a remake of a classic Tank game. It has a variety of game modes, the best being 2 player vs each other. It also has 1 player vs. Computer and background sound blaster music. No Pieces No Pong Mania v2.0

    39. The PC Guide Discussion Forums - Qbasic Programming Question
    View Full Version qbasic programming question. confused. 0314-2001, 0203 PM. How can you have a qbasic program send you back to windows after it has ran
    http://www.pcguide.com/vb/archive/index.php/t-7213.html

    40. Dangerous-industries Search For QB
    qbasic programming language Typos/falses qbasic programming language qbasic programming lnaguage Qbasic programmnig language Qbsaic programming
    http://www.dangeruss-industries.com/list.QB.html

    A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

    Page 2     21-40 of 114    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20

    free hit counter