Geometry.Net - the online learning center
Home  - Basic_Q - Qbasic Programming

e99.com Bookstore
  
Images 
Newsgroups
Page 4     61-80 of 107    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. Microsoft Guide to Object Programming with Visual Basic 4 and Microsoft Office for Windows 95 by Joel Dehlin, 1996-04-01
  2. Excel 2002 Power Programming with VBA by John Walkenbach, 2001-07-15
  3. ADO.NET Programming in Visual Basic .NET (2nd Edition) by Steven Holzner, Bob Howell, 2003-01-09
  4. Advanced Visual Basic.NET: Programming Web and Desktop Applications in ADO.NET and ASP.NET by David Gefen, Chittibabu Govindarajulu, 2003-09-13
  5. Quickbasic Advanced Techniques (Programming Series) by Peter G. Aitken, 1989-05
  6. Programming the Web with Visual Basic .NET by Lynn Torkelson, Constance Petersen, et all 2002-07-16
  7. Visual Basic 5 Object-Oriented Programming: Your Guidebook to the Hottest, Most Powerful Programming Paradigm by Gene Swartzfager, 1997-03-03
  8. Programming With Microsoft Visual Basic 5.0 for Windows by Diane Zak, 1999-02
  9. Professional Visual Basic Windows CE Programming by Larry Roof, 1998-09
  10. BASIC Programming for the I. B. M. Personal Computer by George Diehr, etc., et all 1987-04-29
  11. Qbasic (The Irwin advantage series for computer education) by Donald L. Amoroso, Elizabeth C. Boyd, et all 1994-01
  12. Advanced Visual Basic 4.0 Programming by Steven Holzner, 1996-02
  13. The Visual Guide to Visual Basic for Windows: The Illustrated, Plain-English Encyclopedia to the Windows Programming Language : Version 3.0 (Ventana) by Richard Mansfield, 1993-08
  14. Microsoft ASP.Net Programming with Microsoft Visual Basic .Net Deluxe Learning Edition by G. Andrew Duthie, Corporation Microsoft Corporation, 2002-11-13

61. Microbot QBasic Programming Examples
Some Microbot Programs Caliper Cartesian Indemo Switch PickAndPlace Outputs
http://www.waketech.edu/~jlturner/atr211/mbbasic.htm
Some Microbot Programs Caliper
Cartesian

Indemo

Switch
...
Outputs

62. QBasic Programming
Almost all Introduction to Programming type courses use QBasic as thetool to teach programming principles. QBasic has been replaced
http://online.morainevalley.edu/Summer/2002/IMS101-300/qbasic.htm
QuickBasic is an introductory programming language that is used primarily today to teach students the structure and logic behind programming. Almost all "Introduction to Programming" type courses use QBasic as the tool to teach programming principles. QBasic has been replaced in business with programming languages such as Visual Basic and C++. This quick introduction to QBasic is meant only to introduce you to programming so that you can decide if you would like to take an "Introduction to Programming" class. If you are interested in learning more about programming, Moraine Valley offers a course called "Programming Principles", MIS 105 Go to the Lecture Notes to learn more about QBasic before completing the following assignments.
Sample Program - Patient Listing
Program #1 - Personnel Report Program #2 - Membership Listing

63. Mr. Webster's Computer Science Class
to Computer Science 19971998 School Year, Students learn how to program using theqbasic programming language, and how to develop pages for the World Wide Web.
http://ms.mathscience.k12.va.us/wwwebster/sc/class/webster.htm
Index Page for Mr. Webster's Computer Science Classes Pendleton High School, Pendleton, SC Courses
Introduction to Computer Science 1997-1998 School Year
Students learn how to program using the QBasic programming language, and how to develop pages for the World Wide Web.
Introduction to Computer Science 1996-1997 School Year
Students learn how to program using the QBasic programming language, and how to develop multimedia stacks using the authoring tool HyperStudio. Computer Science II This course builds on the skills that students learn in the introductory course. Students learn advanced programming skills with Visual Basic, as they create applications for the Windows 95 platform. Students also learned how create web pages. They developed web pages on the topics of Visual Basic, and also the Year 2000 Problem. One of my students, Matt (Rhino), created a page that includes links to the other students' web sites from Computer Science II. Visit Matt's page to learn more about the Computer Science II course.

64. The Cross Entertainment Page - Links
and more. No banner. Future Software, The Current home for qbasic programmingit can be considered the new Qbasic.com, Acid Works Software,
http://crossleo.tripod.com/Links.htm
Get Five DVDs for $.49 each. Join now. Tell me when this page is updated
This are other programming related webpages.
Cross entertainment team network - links Name: Description: Banner if any: Eagle perch
A site for programmers and gamers No banner Buff's Qbasic Page Provides lots of Qbasic programs and even info on the Oklahoma city tornado! The Programming Central A Good meeting place for programmers No banner BatmanBond3D Page BatmanBond's 3D page if you like Batman and James Bond and Qbasic you gotta be here! No banner Microspace The home of team member Chrisyboy Microspace provides you with information over Java programming and more. The Qbasic Central The home of the Award winning game of Sonic Xtreme a must see! No banner NeoZones An exelent Qbasic resource with tons of files. No banner Qbasic Utilites So you need utilities? get them here they got compilers and files for Qb, VB and others No banner Warped.ods.org an Ultima fan ah? well this is the place for you this page it's the home of team member Warped Dragon and his many creations in programming No banner The Slush Zone Home of team member Dr Slushi and his creations here you can find programs from Java to C++ and more.

65. Game Programming Resources And Links Ziron Multimedia
download. Source code available. qbasic programming tutorial available. download.Source code available. qbasic programming tutorial available.
http://www.ziron.com/links/links.html
This website is temporarily unavailable.
Reason Code = 2
Please contact the Interland Billing Department at:
888-438-1752 option 3

66. Acid Works Programming Tips Page
Here are some really good qbasic programming tips. If you have any tipsyou would like me to add(you will get credit) email them to me.
http://www.acidworks.com/tips.html
Here are some really good QBasic programming tips. If you have any tips you would like me to add(you will get credit) email them to me.
Graphics
Keyboard Math Timing
Graphics
  • SCREEN 13 is best for games, it has 256 colors and has had many libraries written for it. When using SCREEN 13 use the following instead of PSET, it is much faster. Is SCREEN 13 use this instead of PALETTE, it is much faster and easier to use: Also to find out what values a color has use this: When using PUT remember that PSET is the fastest option. To save the screen to a file in mode SCREEN 13 do: And to load that screen back up again do:
Keyboard
  • To clear the key board buffer and get rid of the annoying beeping sound, do this: To disable CTRL+BREAK and CTRL+C do this: DEF SEG = FOR x = TO 3 POKE (108 + x), PEEK (112 + x) NEXT
Math
  • If you can add numbers("a + a") instead of multiplying("a * 2"), adding is much faster. Also multiplying("x * x") is faster than raising a number to a power("x ^ 2"). To find out if a number is odd do "x AND 1", if it returns 1 it is odd. You could also do "x MOD 2" to find out if a number is odd, if it returns 1 it is odd.

67. SpeedyGrl.com : Programming : QBASIC
TimeZones. Programming QBASIC Q Basic Tutorial; QBasic ASMLibrarie;The QBasic Page Tutorials; qbasic programming for Beginners;
http://www.speedygrl.com/p/45.html
> ON THIS SITE :: Language :: :: Private ::
  • Home
  • whoami
  • Friends
  • Link to Me :: Miscellaneous ::
  • Colortables
  • Colors by name
  • Convert colors to hex etc. (howto)
  • Wallpapers :: Links Links Links ::
  • Find People
  • Free stuff online
  • Investigational
  • Recipes Galore ...
  • U.S. NewsSites
    (more links in the other sections too) :: Conversions ::
  • Area
  • Basic
  • Circular
  • Length ...
  • More... :: 'round the world ::
  • U.S., Canadian, and Caribbean AreaCodes
  • Airport Abbreviations
  • Aviation Abbreviations
  • Human Rights Section ...
  • Time and TimeZones :: Programming : QBASIC ::
  • Q - Basic Tutorial
  • QBasic ASMLibrarie
  • The QBasic Page Tutorials
  • QBasic Programming for Beginners ...
  • The QP7 Programming Page
    :: Search This Site ::
    Search WWW Search This Site
    > ON THIS SITE :: Computing 101 ::
  • All TopDomains online
  • Downloads
  • Free Shells
  • Graphics Links ...
  • Misc Comp Links :: Programming :: (there are over 70 programming languages here)
  • C
  • C++
  • LISP ...
  • Miscellaneous Q's 2 :: Friends' Sites ::
  • AntiOffline
  • Deficiency.org
  • Deviance.org
  • Disgraced.org ...
  • Spikeman.net :: Other Places :: Head of European Operations for The
    ETHICAL HACKERS
    AGAINST PEDOPHILIA
    http://www.ehap.org/
  • 68. Kewlbasic The Freakin' Kewlest Qbasic Page In The World!

    http://kewlbasic.cjb.net/
    Click here to continue. Kewlbasic The freakin' kewlest qbasic page in the world! Kewlbasic The freakin' kewlest qbasic page in the world! qbasic games quickbasic

    69. Indirizzi Utili
    Hello! Here are some qbasic programming links that I've found. Pete Gonzalez's QbasicPage. The Qbasic Page. The 3. qbasic programming qbasic programming.
    http://calvino.polito.it/~pier/qbasic/siti.html
    Indirizzi utili In questa pagina la PiJa vi consiglia i migliori siti riguardo il Qbasic. Abbiamo deciso di fornirvi questo servizio partendo da una esperienza personale, infatti consultando i maggiori motori di ricerca spesso si rischia di ricevere una enorme quantita'di dati tra cui spesso e' facile perdersi. Per ovviare a questo incoveniente consultate la nostra lista !!!
    Qualora foste interessati ad un argomento particolare potete rivolgere la vostra richiesta direttamente alla PiJa alla casella postale indicata nella homepage
    Eric Hielscher's Qbasic Links
    Eric Hielscher's Qbasic Links. Hello! Here are some Qbasic Programming links that I've found. Pete Gonzalez's Qbasic Page. The Qbasic Page. The...
    http://www.lookup.com/homepages/79060/qbasic.html
    - size 919 bytes - 24-Mar-96 - English
    CPSC 101A, Sound in QBasic
    Making Music in QBasic. QBasic allows your program to make use of the speaker on your personal computer to produce sounds. The Qbasic commands SOUND and...
    http://www.roanoke.edu/~shende/Courses/Fall95/CPSC101/sound.html
    - size 3K - 9-Nov-95 - English
    Qbasic programming
    Qbasic programming. (Submitted by Rick Adelkopf, RAdelkopf@aol.com) Back to DOS page. QBASIC is the latest programming environment that is shipped with...

    70. Qbasic Programming
    qbasic programming. I started QBasic programing years and years back(1997ish) as it was the first programming language I learnt.
    http://myweb.tiscali.co.uk/ralph.hughes/Qbasic.htm
    Qbasic Programming I started QBasic programing years and years back (1997ish) as it was the first programming language I learnt. I still use it occasionally for low level programming and very memory or CPU intensize operations where I restart the computer in DOS and run my program knowing it has the full usage of the PC without any interuptions. I used to try and make all sorts of games. I started off with a great idea in my head and all sorts of complex ways I was going to make it, unfortunatly my sticking power to keep going once it gets boring was not much and so 99% or all the programs I make didn't even get to the half completed stage. Here are some examples of the things I made in DOS.(All files in .ZIP format) Description Notes+Requirements File size Download Escape From School VI P200, graphics card 70 Kb Escape6.zip Escape From School V Average spec computer Escape5.zip Escape From School IV Sound Blaster Escape4.zip Pokémon Shooter killpoke.zip

    71. Pyxia IBasic SAQ
    21 qbasic programming Joey 05/23/02 Brady Publishing Schnieder, David I. qbasic programmingDavid I Schnieder and the Peter Norton Computing Group Title QA76.73
    http://www.web-helper.net/PyxiaSAQ/ViewArticle.asp?21

    72. TCAEP.co.uk Bookshop > Computers & Internet > Programming > Languages & Tools >
    Fundamentals of qbasic programming Problem Solving and ApplicationDevelopment by Robert C. Nickerson Buy this book, Programming
    http://www.tcaep.co.uk/bookshop/computersinternet/programming/languagestools/qba

    New on
    TCAEP
    Download

    Bookshop
    ...
    Sources

    Search Now: Bookshop
    in association with amazon .com
    TCAEP.co.uk Bookshop
    Programming > QBasic
    Qbasic by Example
    by Greg M. Perry
    Buy this book
    The Revolutionary Guide to Qbasic by Vladimir Dyakonov(Editor), et al Buy this book QBASIC with an Introduction to Visual BASIC 5.0 by David I. Schneider Buy this book Brief Course in QBASIC with An Introduction to Visual BASIC, A by David I. Schneider Buy this book Quickbasic and Qbasic Using Modular Structure With Visual Basic by Julia Case Bradley Buy this book QBASIC with an Introduction to Visual Basic for Engineering, Mathematics, and the Sciences by David I. Schneider Buy this book by Edmund X. Dejesus Buy this book Fundamentals of Qbasic Programming : Problem Solving and Application Development by Robert C. Nickerson Buy this book Programming in Qbasic for Engineering Technology by Kenneth A. Craven Buy this book Qbasic : An Introduction to Programming by Gary, B. Shelly, et al Buy this book QBasic Using Subprograms Second Edition with an Introduction to Microsoft Visual Basic by James S. Quasney, et al

    73. CBIS 6 Introduction To Data Processing
    Chapt 10. PC Hardware updates. 13. 4/15, qbasic programming, Introduction to Programming.14. 4/22, qbasic programming, Structured Programming and detail reports. 15.
    http://home.lbcc.edu/~ecekei/cbis6.htm
    LBCC Home
    CBIS 6 Introduction to Data Processing E. Colin Ikei, Instructor Class Description: Fundamental concepts of computers, hardware, operating systems, and application software available and in use in today's computing systems. Computer based information systems, end-user computing systems, program development emphasizing the logic of problem solving, and proper programming using structured techniques are discussed. Basic language is used. Projects include "hands on" experience using windows application programs for a word processor, spreadsheet and database projects. Additional projects include program development. Required Textbook: Computers in Your Future 2 nd Edition Works 4 for Windows 95 Essentials 2 nd Edition by Matherly Required Materials: 3 1/2" High Density Diskette (50 question) scantron sheets (Form 882-ES) Grading: 5 Exams 250 points total Lab Exercises 180 points total Programming projects 100 points total 530 points total Exams After the completion 2 chapters there will be a 50 question mini midterm. Students who have a legitimate excuse for missing a midterm can take a make up exam at the end of the semester during the Final. No more than 1 make up midterm maybe taken on the day of the final. Students will be expected to have all appropriate materials for each midterm quiz: one (1) 50 question scantron sheet ( I will not accept larger sized sheets) one (1) number 2 lead pencil Students caught cheating during quiz will be drop from the class and reported to the Dean.

    74. CIS 2-Programming In QBASIC
    Anintroduction to computer programming using the qbasic programming language....... 2. Course Title Programming in QBASIC. 3. Units 1. 9a. Catalog
    http://www.solano.edu/webcms/display.asp?course_id=9261

    75. WannaLearn.com: Computers And The Internet : Programming Languages
    Collection of free, high-quality online courses, guides, lessons, tutorials, tips on how to program Category Computers Education Programming Tutorials...... QBASIC Tutorial a step by step, text-based tutorial on the qbasic programming language,covering how to get started, program looping, loading and processing
    http://www.wannalearn.com/Computers_and_the_Internet/Programming_Languages/

    More search options
    Computers and the Internet : Programming Languages
    Home Computers and the Internet / Programming Languages ]
    Subcategories
    • C and C++
    • CORBA
    • Cobol
    • Fortran ...
      Stratford Career Institute Computer Programming Program. Click Here to have FREE information mailed to your door.
      Free Instructional Sites: Basics of computer programming - text-based guides on computer programming basics, covering basics of programming, the elements of a computer program, how to choose the right language for each task, Number crunching languages including Fortran, C, C++, script languages including Perl, Python, optimization issues and more (Rating: 7.50 Votes: 6) Rate this site: Data Structures and Algorithms - a text-based online course on how to program efficiently, covering characteristics of good programs, programming strategies, data structures, searching, complexity, queues, sorting, searching revisited, dynamic algorithms, graphs, Huffman encoding, FFT, hard or intractable problems, games and more (Rating: 6.25 Votes: 4) Rate this site: Programming Language Comparison - an evaluation and comparison of several popular programming languages, including Eiffel, Smalltalk, Ruby, Java, C#, C++, Python, Perl and Visual Basic, comparing such features as object-orientation, static/dynamic typing, generic classes, inheritance, feature renaming, method overloading, operator overloading, higher order functions, lexical closures, garbage collection, uniform access, class variables/methods, reflection, access control, design by contract, multithreading, regular expressions, pointer arithmetic, language integration, built-in security and more

    76. Programming The Parallel Port In QBasic
    Programming The Parallel Port In QBasic. This is a simple introduction to programmingthe parallel port in QBasic, QuickBasic or similar language.
    http://www.aaroncake.net/electronics/qblpt.htm
    I am no longer maintaining the electronics sections of this site. For an explanation, see the electronics contact page . If you need help, you can ask your question in The Forum
    Programming The Parallel Port In QBasic
    If you have built any of the interfaces on my circuits page and now want to know how to actually make use of them, this page is for you. This is a simple introduction to programming the parallel port in QBasic, QuickBasic or similar language. Note that most of the concepts in this page can also be applied to GWBASIC. If you are interested in using Visual Basic to control the port, see Programming The Parallel Port In Visual Basic . What this document will not do is give you lots of details on using bi-directional ports, DMA and other advanced topics. This document assumes that you are familiar with the basic functions of BASIC itself. The parallel port is made up of three different sections. These are the data lines control lines and status lines . There are 8 data lines, and they are the primary means of getting information out of the port. In simple projects, you will be concentrating mostly on the data lines. The control lines are another 4 outputs. They are meant to provide control signals to the printer (such as form feed or initialize). The status lines are a standard parallel port's only inputs. There are 5 of them. They were meant to allow the printer to communicate things such as error, paper out and busy to the PC. Each section is accessed by it's own address and will act independently from the rest. This is almost as if they were different ports. The addresses are as follows:

    77. Computer Games Programming
    Weaknessesonly covers qbasic programming. Lots of centered content makes ithard to read in some spots. Content summaryTeaches qbasic programming.
    http://www.rit.edu/~smb9848/imm/project1/
    Computer Games Programming
    Intro: I chose computer games programming for my site. It is a hobby of mine. I was actually planning to use my page fo the progect, but some elements make the mac machines 9.x crash. (uses ACTUAL java in site)
    when i searched for information i found that it was easy to find information on it. many people who make computer games also have a website. Unfrtuantly many cant design a site very well. they have a lot of good information, but its hard to find.I decided to use sites and resouces that have the best information. to improve resolts I concentrated only on BASIC, JAVA, and C++ programming.
    qbasic.com home page http://www.qbasic.com
    Content summary: This is a website for qbasic program development. It provides source code and ways to get programs to program in BASIC. It is good for people experienced in Qbasic.
    Special Features: Has numerous callenges of what you can try to program. Designed to help people learn advanced features of Qbasic. has mouse compatability.
    Weaknesses: only covers qbasic programming. Lots of centered content makes it hard to read in some spots. Would be hard for beginners to comprehend.

    78. Basic Programming Tutorial
    Basic Programming Tutorial. qbasic programming Tutorial. So you hearda long time ago about some programming language called QBasic.
    http://www.badconnections.net/basictut.html
    Cinema The List R.I.P Firebird Telnet Tutorial ... Kiddiots Basic Programming Tutorial QBasic Programming Tutorial So you heard a long time ago about some programming language called QBasic. This language isn't used much anymore except in its new incarnation as visual basic. If you learn QBasic, vb is quite simple. So what am I going to show you today? How to write a simple program in QBasic. First of all Basic stands for "Quick Beginner's All-purpose Symbolic Instruction Code" and was developed in the 1960's as a simple way to learn programming. This first simple program will use multiplication to find the area of a room. First of all the program in its entirety: CLS INPUT "Please enter the length"; Length INPUT "Please enter the width"; Wdth LET Area = Length * Wdth PRINT "The area is"; Area END QBasic is a very simple language, and for those programmers who are reading this that have never dealt with QBasic, this is an unstructured programming language meaning that you can use the GOSUB command to jump around to any place in the program at any time. Many experienced programmers do not like this feature, but when I took a class for this, it saved my life while writing programs. Also in this language there is no need to declare variables. Now I will explain the program line by line. CLS This command tells QBasic to clear the screen. Often times this is needed because old data from the same program doesnt automatically disappear.

    79. QBasic Help
    ABOUT qbasic. QBasic is a variant of the Basic programming language designedby Microsoft. SYNTAX. Starts the MSDOS qbasic programming environment.
    http://www.computerhope.com/qbasichl.htm
    Search
    Other Pages Home
    Site map

    Computer help

    Dictionary
    ...
    What's new

    MICROSOFT DOS
    Information about the QBasic command. QUICK LINKS About QBasic
    Availability

    Syntax

    Examples
    ABOUT qbasic QBasic is a variant of the Basic programming language designed by Microsoft. With QBasic the user can design computer programs and or utilities. AVAILABILITY The QBasic command is an external command and is available in All Versions of MS-DOS Windows 95 Windows 98 Windows NT ... Windows 2000 INDEX Category: MS-DOS Companies: Microsoft Related Pages: Operating Systems UPDATES No Specific drivers for this topic. See Drivers Page for complete listing of drivers. RESOLVED Were you able to locate the answer to your questions? COMMAND INFORMATION SYNTAX Starts the MS-DOS QBasic programming environment. QBASIC [/B] [/EDITOR] [/G] [/H] [/MBF] [/NOHI] [[/RUN] [drive:][path]filename] /B Allows use of a monochrome monitor with a color graphics card. /EDITOR Starts the MS-DOS Editor.

    80. QuickBasic Links And ABOUT Buff
    Beginner's Basic. ENHANCED, Enhanced qbasic programming. Home of DirectQB. EnhancedCreations. IPPO, Ippo qbasic programming. Check it out, Ippo.
    http://web.nstar.net/~oasys/ABT.HTM
    Email Files Links Music Tips My name is Fred Buffington. I am a graduate of Oklahoma University, background in accounting,
    specializing in programming. I answer questions on the QuickBasic Boards below as "buff".
    Q-Finder
    Quick Basic Site Locator LINKS TO QUICKBASIC SITES Guest Book Please sign the guest book - Thanks. =board rating, = best, based on content, activity,
    and ease of viewing (lots of argumentative posts lowers rating). QuickBasic Discussion Board Qboard 2 VirtuaSoft Qboard Home:VirtuaSoft Qboard 3 Qbasic Mania Home:Qbasic Mania Qboard 4 Enhanced Creations Home:See below Qboard 5 Qbasic Place Home:Qbasic Place Qboard 6 Neozones Home:See below Qboard 7 Qbasic Outpost Home:See below Qboard 8 Chris's Place Home:Chris's Place Qboard 9 Rems Qboard Home:Rems Qbasic Qboard 10 Ravens Qboard Home: See below Qboard 11 Dark Elf Qboard (down) Home: See below (Dark Elf) Qboard 12 Qtopia Qboard Home: Qtopia Qboard 13 Future Software (New Board) Home:See below Qboard 14 Top Gun Home: Top Gun Qboard 15 BlueTek (Neozones and SonicBlue combine for this new Forum) Home:See Below Qboard 16 GouldSoft Board Home: GouldSoft Qboard 17 QB top 50 QB amd VB Board Home: QB top 50 Qboard 18 New QB board as of 8/18/99 (QB45.EXE)

    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 4     61-80 of 107    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20

    free hit counter