Microsoft® Small Basic

Slides:



Advertisements
Similar presentations
Microsoft® Small Basic Graduating to the Microsoft Visual Basic® development environment Estimated time to complete this lesson: 1 hour.
Advertisements

Microsoft® Small Basic Statements, Properties, and Operations Estimated time to complete this lesson: 1 hour.
COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
Microsoft® Small Basic
Microsoft Office 2007-Illustrated Introductory, Windows Vista Edition Windows XP Unit A.
Microsoft® Small Basic
COM: 111 Introduction to Computer Applications Department of Information & Communication Technology Panayiotis Christodoulou.
 Use the Left and Right arrow keys or the Page Up and Page Down keys to move between the pages. You can also click on the pages to move forward.  To.
Microsoft® Small Basic
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Introduction to Visual Basic Programming. Lecture Outline History What is Visual Basic First Look at the VB 6.0 Environment Some VB Terminology Our first.
Office 2003 Introductory Concepts and Techniques M i c r o s o f t PowerPoint Project 1 Using a Design Template and Text Slide Layout to Create a Presentation.
Office 2003 Introductory Concepts and Techniques M i c r o s o f t Word Project 1 Creating and Editing a Word Document.
Word Processing Microsoft Office: Exploring Word 2011 for MAC.
Microsoft® Small Basic Sharing Code Estimated time to complete this lesson: 1 hour.
Editing Java programs with the BlueJ IDE. Working environments to develop (= write) programs There are 2 ways to develop (write) computer programs: 1.Using.
1 Macros Presented by Maria G. Martinez. 2 What's a macro?  Macro - set of computer instructions that you can record and associate with a shortcut key.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Welcome to the CRE Programming Club! Robert Eckstein and Robert Heard.
Microsoft® Small Basic
Lesson 15 Getting Started with PowerPoint Essentials
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. WORD 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 22 Macros.
Microsoft Excel By: Dr. K.V. Vishwanath Professor, Dept. of C.S.E,
Introduction to VBA MGMI Aug What is VBA? VBA = Visual Basic for Application Excel’s powerful built-in programming language An event-driven.
* go to intranet get list of advisees username:teamwork password: atc1122.
Integrated Development Environment (IDE)
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Excel 2002 Lesson 1 Introduction.
This tutorial teaches Microsoft Word basics. Although knowledge of how to navigate in a Windows environment is helpful, this tutorial was created for.
Teacher’s Assessment Assistant Worksheet Builder Starting the Program
1 After completing this lesson, you will be able to: Start Word. Explore the Word window. Enter text in a document. Save a document. Close a document and.
Microsoft Visual Basic 2005 ENRICHMENT CHAPTER Visual Studio Tools for Office.
Basic Computer and Word Functions, part 1 Read the information and use to answer the questions in the Basic Computer and Word Functions Study Guide.
Productivity Programs Common Features and Commands.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
Program Design and Coding
Microsoft Visual Basic 2012 CHAPTER THREE Program Design and Coding.
Microsoft Visual Basic 2010 CHAPTER THREE Program Design and Coding.
Automating Database Processing
Welcome to the CRE Programming Club! Robert Eckstein and Robert Heard.
Visual Basic.NET BASICS Lesson 3 Events and Code.
Chapter 3 The Visual Basic Editor. Important Features of the VBE Alt-F11 will open the Visual Basic Editor. The Code window is to the right, Project Explorer.
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Basic Computer and Word Functions, part 1 Read the information and use to answer the questions in the Basic Computer and Word Functions Study Guide.
Review of Lesson One Material Demo then Do it Beginning Computer Class LLI.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
COMPREHENSIVE Word Tutorial 1 Creating a Document COM111 Introduction to Computer Applications.
Chapter Three The UNIX Editors.
Chapter 23. Copyright 2003, Paradigm Publishing Inc. CHAPTER 23 BACKNEXTEND 23-2 LINKS TO OBJECTIVES Record, Run, Pause, and Delete Macros Record, Run,
Microsoft Office Excel By : Juan Pratama Anandika Year : 7 Project Presentation : ICT.
Lesson 1 - Understanding the Word Window and Creating a New Document
Microsoft Visual Basic 2005 BASICS Lesson 3 Events and Code.
Session 2: Basic HTML HTML Coding Spring 2009 The LIS Web Team Presents.
COMPUTER III. Fundamental Concepts of Programming Control Structures Sequence Selection Iteration Flowchart Construction Introduction to Visual Basic.
Word 2007 ® Business and Personal Communication What kinds of documents can you create with Word 2007? 1.____________ _ Business Report.
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
XP New Perspectives on Creating Web Pages With Word Tutorial 1 1 Creating Web Pages With Word Tutorial 1.
Introducing the turtle
Mouseless Computing For Windows OS After completing this tutorial you will be able to navigate your computer using keyboard shortcuts.
Dive Into® Visual Basic 2010 Express
Chapter 2: The Visual Studio .NET Development Environment
1. Introduction to Visual Basic
Microsoft® Small Basic
Microsoft® Small Basic
Productivity Programs Common Features and Commands
A look at Small basic The Text Window 2017.
Introduction to Programming
Lesson 2: Selecting Cells, Rows, and Columns
Microsoft Office Word 2003 Lesson 1
Presentation transcript:

Microsoft® Small Basic Introduction to Small Basic Estimated time to complete this lesson: 30 minutes

Introduction to Small Basic In this lesson, you will learn how to: Describe Small Basic. Explore the Small Basic environment. Write a Small Basic program. Use IntelliSense® technology. Save your program.

Small Basic is a programming language… What is Small Basic? A program is a set of instructions that a computer can understand. To write that set of instructions, you use a programming language. Small Basic is a programming language… …that makes computer programming extremely approachable, easy, and fun!

Small Basic  A Programming Language for Beginners In the beginning, only a few programming languages existed, and they were easy to learn. However, these languages became more and more complex, such as the Microsoft Visual C#® development tool, the Microsoft Visual Basic® development environment, and Java. This complexity discouraged people who wanted to learn how to program computers. Small Basic removes this complexity barrier and serves as a stepping stone for all beginners to the world of programming!

The Small Basic Environment Small Basic provides you with an extremely simple yet powerful development environment with features like instant context-sensitive help. 1. You write your Small Basic programs in the Editor. 2 3 2. You can run various commands by clicking buttons on the Toolbar. 1 Let’s explore the different elements of the environment where you write and run your Small Basic programs. You can open and work with multiple Editor windows at one time. The Editor window that contains the program you are currently working with is the active Editor. You can indent your program code more consistently by highlighting it, right-clicking it, and then clicking Format Program. 3. As you write code, you can find information about commands in the Help window.

Your First Program Now that you’re familiar with the environment, you are ready to start programming! As you know, the Editor is where you write your programs. So, let’s write the following line in the Editor: TextWindow.WriteLine(“Hello, World!") You have created your first program, and now you can run it and check the result! output You can run your program either by clicking Run on the Toolbar or by pressing F5 on the keyboard.   In the next lesson, you will analyze a program in detail to learn more about it. Code: TextWindow.WriteLine("Hello, World!") Click the button on the Toolbar.

IntelliSense  Making It Easy While you were typing, did you notice that a list of items appeared with their explanations? These items are part of an “IntelliSense” list, which you can use to type your programs faster. An IntelliSense list contains commands that you can type. You can scroll through the list by pressing the UP and DOWN arrows on your keyboard, and you can press ENTER to insert the highlighted command into your code.

Saving Your Program After you write a program, you must save it if you want to change or run it later. To save your program, you can click Save on the Toolbar, or you can hold down the CTRL key on the keyboard while you press the “S” key. You should save your program frequently so that you do not lose your work if the power fails or your computer suddenly shuts down.   Code: TextWindow.WriteLine("Greetings to All")

Let’s Summarize… Congratulations! Now you know how to: Define Small Basic. Explore the Small Basic environment. Write a Small Basic program. Use IntelliSense. Save your program.

Show What You Know Now that you know some facts about Small Basic, you can demonstrate what you’ve learned by answering the following questions: What is Small Basic? Which feature of Small Basic helps you type your program faster? How do you run your Small Basic program? Answers: A programming language. IntelliSense. By clicking Run on the Toolbar or by pressing F5 on the keyboard.