Browse by Tags

Tagged Content List
  • Wiki Page: Small Basic Curriculum: Lesson 3.1: File Input and Output

    Small Basic > Curriculum > Online > Lesson 3.1: File Input and Output Table of Contents File Input and Output The File Object Operations of the File Object The LastError Property Let’s Summarize… Show What You Know PowerPoint Downloads Estimated time to complete this lesson...
  • Wiki Page: Small Basic Curriculum: Lesson 2.6: Flickr, ImageList, and Network Objects

    Small Basic > Curriculum > Online > Lesson 2.6: Flickr, ImageList, and Network Objects Table of Contents Flickr, ImageList, and Network Objects The Flickr Object The ImageList Object The Network Object Let’s Summarize… Show What You Know PowerPoint Downloads Estimated time...
  • Wiki Page: Small Basic Curriculum: Lesson 2.5: Clock, Desktop, and Dictionary Objects

    Small Basic > Curriculum > Online > Lesson 2.5: Clock, Desktop, and Dictionary Objects Table of Contents Clock, Desktop, and Dictionary Objects The Clock Object Date, Weekday, and Time The Year Property Month and Day Hour, Minute, and Second The Desktop Object The Dictionary Object...
  • Wiki Page: Small Basic Curriculum: Lesson 2.4: Sound, Program, and Text Objects

    Small Basic > Curriculum > Online > Lesson 2.4: Sound, Program, and Text Objects Table of Contents GSound, Program, and Text Objects Introduction to the Program Object Exploring the Program Object Introduction to the Sound Object Exploring the Sound Object Introduction to the Text...
  • Wiki Page: Small Basic Curriculum: Lesson 2.3: Exploring Shapes

    Small Basic > Curriculum > Online > Lesson 2.3: Exploring Shapes Table of Contents Exploring Shapes Introduction to the Shapes Object Operations of the Shapes Object Animating a Shape Rotating a Shape Fun with Shapes Let’s Summarize… Show What You Know PowerPoint Downloads ...
  • Wiki Page: Small Basic Curriculum: Lesson 2.2: Turtle Graphics

    Small Basic > Curriculum > Online > Lesson 2.2: Turtle Graphics Table of Contents Turtle Graphics Meet the Turtle Properties and Operations of the Turtle Object Making the Turtle Move Having Fun with the Turtle Let’s Summarize… Show What You Know PowerPoint Downloads Estimated...
  • Wiki Page: Small Basic Curriculum: Lesson 2.1: Graphics Window

    Small Basic > Curriculum > Online > Lesson 2.1: Graphics Window Table of Contents Graphics Window Introducing the Graphics Window Properties of the Graphics Window Operations on the Graphics Window Exploring the Graphics Window Using Colors in the Graphics Window Exploring the...
  • Wiki Page: Small Basic Curriculum: Lesson 1.5: Branching and Subroutines

    Small Basic > Curriculum > Online > Lesson 1.5: Branching and Subroutines Table of Contents Code Branches and Subroutines Branching Branching in Small Basic Programs Subroutines in Small Basic Programs Let’s Summarize… Show What You Know PowerPoint Downloads Estimated time...
  • Wiki Page: Small Basic Curriculum: Lesson 1.4: Conditions and Loops

    Small Basic > Curriculum > Online > Lesson 1.4: Conditions and Loops Table of Contents Conditions and Loops Conditions in Small Basic Programs Loops in Small Basic Programs Let’s Summarize… Show What You Know PowerPoint Downloads Estimated time to complete this lesson: 2 hours...
  • Wiki Page: Small Basic Curriculum: Online

    Small Basic > Curriculum > Online Lesson 1.1: Introduction Lesson 1.2: Statements, Properties, and Operations Lesson 1.3: Variables Lesson 1.4: Conditions and Loops Lesson 1.5: Branching and Subroutines Lesson 2.1: Graphics Window Lesson 2.2: Turtle Graphics ...
  • Wiki Page: Small Basic Curriculum: Show What You Know Answer Key

    Small Basic > Curriculum > Online > Show What You Know Answer Key On this page, you will find the answer key for the Show What You Know section from each lesson. Table of Contents Lesson 1.1: Introduction to Small Basic Lesson 1.2: Statements, Properties, and Operations Lesson...
  • Wiki Page: Small Basic Curriculum: Lesson 1.3: Variables

    Small Basic > Curriculum > Online > Lesson 1.3: Variables Table of Contents Variables What is a Variable? How to Name a Variable? Storing Numerical Values In a Variable Storing Multiple Values In a Variable Let’s Summarize… Show What You Know PowerPoint Downloads Estimated time...
  • Wiki Page: Small Basic Curriculum: Lesson 1.2: Statements, Properties, and Operations

    Small Basic > Curriculum > Online > Lesson 1.2: Statements, Properties, and Operations Table of Contents Statements, Properties, and Operations Statements in Small Basic Programs Showing and Hiding the Text Window Properties of the TextWindow Object Operations of the TextWindow...
  • Wiki Page: Small Basic Curriculum: Lesson 1.1: Introduction

    Small Basic > Curriculum > Online > Lesson 1.1: Introduction Table of Contents Introduction to Small Basic What Is Small Basic? Small Basic - A Programming Language for Beginners The Small Basic Environment Your First Program IntelliSense - Making It Easy Saving Your Program Let...
  • Wiki Page: Download the Small Basic Curriculum

    Small Basic > Curriculum > Download the Small Basic Curriculum On this page, you can download the Small Basic curriculum to your computer. All the curriculum files are in Microsoft Office PowerPoint. At the end of this list, you can all download all lessons as one .zip file. To browse...
  • Wiki Page: Small Basic

    Table of Contents Extensions Community Let's Start Additional Resources Web Pages Blogs Social Media Other Languages Japanese (ja-JP) Italian (it-IT) Microsoft Small Basic is a beginner .NET language, derived from QuickBasic. It was first launched as a public beta in 2008, and version 1 launched...
  • Wiki Page: Small Basic: The 14 Keywords

    Please add information to explain each keyword. The Small Basic FAQ mentions there are 14 keywords in the language: What are the unique features of the Small Basic language? Size The Small Basic language consists of just 14 keywords. ========== Here are the 14 Keywords: ...
  • Wiki Page: Small Basic Sample: Arrays

    Code '*************************************************************************************** 'Import FCL390 'Sample program to demonstate the use of arrays 'An array is a list of related data that can be added to, deleted from, modified and accessed to perform a task '...
  • Wiki Page: Small Basic Sample: Snake

    Code Initialize() While (GameState <> "") DoGameLoop() EndWhile Program.End() Sub Initialize InitializeVariables() InitializeScreen() EndSub Sub InitializeVariables Array.SetValue("DeltaX","North",0) Array.SetValue("DeltaX","East"...
  • Wiki Page: Small Basic Sample: JetLag

    This is a video game where you have to avoid obstacles. Start the game by hitting the space bar, move left and right with the arrow keys. You can import the program with ID RCB513 Code Initialize() While (GameState<>"End") DoGameLoop() EndWhile Program.End() Sub Initialize...
  • Wiki Page: Small Basic Sample: Turtle Plus Flickr

    Code GraphicsWindow.Show() pic = Flickr.GetRandomPicture("lightning") gw = GraphicsWindow.Width gh = GraphicsWindow.Height GraphicsWindow.DrawResizedImage(pic, 0, 0, gw, gh) distance = 50 Turtle.Speed = 9 For sides = 3 To 20 DrawPolygon() EndFor Sub DrawPolygon...
  • Wiki Page: Small Basic Sample: Flickr Collage

    Table of Contents What is Flickr Collage? Code Reference What is Flickr Collage? With this sample you can use flickr to randomize some online photos on a tag.They will displayed on Graphics Window. Code tag = "seattle" pic = "MyPic" For i = 1 To 20 x = Math.GetRandomNumber...
  • Wiki Page: Small Basic E-Books

    Small Basic > Small Basic E-Books Learn more about Small Basic and find detailed samples by reading sample chapters from one of three e-books that we are providing to you at no cost. If you like using the e-book format, we have links on each page to where you can purchase the complete e-book...
  • Wiki Page: Small Basic: Programming Tips

    Table of Contents GoTo Subroutines Comments Variable names Variables or constants Arrays Code layout Indentation and spacing Code order Planning This article covers the basic ideas of structured programming, or some tips for writing better programs in Small Basic. 'Better' is subjective...
  • Wiki Page: Small Basic: Text Basics

    Table of Contents Introduction Text methods GetLength Append Case Conversion ConvertToLowerCase ConvertToUpperCase Character Codes GetCharacter GetCharacterCode Sub-text manipulation EndsWith StartsWith GetIndexOf GetSubText GetSubTextToEnd IsSubText This article covers the basics of text manipulation...
Page 1 of 4 (93 items) 1234
Can't find it? Write it!