Browse by Tags

Tagged Content List
  • Wiki Page: Small Basic: How to Use Trigonometric Functions

    Let's imagine to draw arc. Assume center of the arc as x = 200, y = 300, start angle a1 = -30 and end angle = -60. In mathematics, y axis goes up. But in Small Basic GraphicsWindow, y axis goes down. So sign of angle becomes opposite. If you don't use trigonometric function...
  • 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...
  • Wiki Page: Small Basic: How to Convert Multi-Line Text into an Array of Lines

    Small Basic can get multi-line text into a variable from multi-line input text box with Controls.GetTextBoxText() or from text file with File.ReadContents(). The following sample code shows how to convert a multi-line text into an array of lines. CRLF = Text . GetCharacter ( 13 ) +...
  • Wiki Page: Small Basic Curriculum

    Small Basic > Curriculum Learn all about Small Basic by using the curriculum. With the curriculum, you can lean Small Basic with separate lessons - just like you would in a classroom. You can download the curriculum, which includes PowerPoint decks to teach from. As a teacher or as a...
  • Wiki Page: Beginning Microsoft Small Basic: Chapter 4: Small Basic Program Design, Input Methods

    Small Basic > Small Basic E-Books > Beginning Microsoft Small Basic > 4. Small Basic Program Design, Input Methods Review and Preview You should now be fairly comfortable with creating and running simple Small Basic programs. In this class, we continue learning...
  • Wiki Page: Beginning Microsoft Small Basic: Chapter 1: Introducing Small Basic

    Small Basic > Small Basic E-Books > Beginning Microsoft Small Basic > 1. Introducing Small Basic Preview You are about to start a new journey. Writing programs that ask a computer to do certain tasks is fun and rewarding. Like any journey, you need to prepare before...
  • Wiki Page: Get Started with Small Basic

    Microsoft Small Basic puts the fun back into computer programming. With a friendly development environment that is very easy to master, it eases students of all ages into the world of programming. Read the Small Basic FAQ Download Small Basic ...
  • Wiki Page: Small Basic: Did You Know?

    Here are some tips to remember while programming with Small Basic. Feel free to add more as you figure out. Small Basic IDE Double clicking on the compiler errors will take you to the actual error. You can zoom the text in the editor by holding control and using the mouse wheel. You can...
  • Wiki Page: Small Basic: デバッグ方法 (ja-JP)

    Table of Contents TextWindow.WriteLine() で変数の内容を表示する "If debug Then..." を使いデバッグのコードを書く サブルーチンのためのテストプログラムを書く バグの一覧表を作る エラーメッセージの意味を知る 「昇格する」と Visual Studio のデバッガを使う まとめ 関連項目 他の言語 この記事では Small Basic 言語で書かれたプログラムの以下のようなデバッグ手段を紹介します。また、発行されたプログラムについてデバッグの実例を示します。 TextWindow...
  • Wiki Page: Small Basic: How to Debug

    Table of Contents Use TextWindow.WriteLine() to show contents of variables Write debug code such as "If debug Then..." Write test programs for subroutines Write list of bugs Meaning of error messages Use "Graduate" and Visual Studio debugger Conclusion See Also Other Languages ...
  • Wiki Page: Small Basic: How to Draw a Triangle

    If you know how to draw rectangle, how can you draw a triangle on it? See following picture. You already drew a square as GraphicsWindow.DrawRectangle(100, 200, 200, 200). So, the triangle you should draw has three points (x1 = 100, y1 = 200), (x2 = 300, y2 = 200), (x3 = 200, y3 = 50). There are 6...
  • 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: VB.NET でエクステンションを作成する方法 (ja-JP)

    Table of Contents ステップ 1: エクステンションの作成 ステップ 2: 動作させるまでの手順 ステップ 3: 次のステップ 他の言語 この記事では、Microsoft Small Basic に追加する簡単なエクステンション(拡張機能)を作成する方法を紹介します。あらかじめ、Small Basic、.NET Framework 3.5 および Visual Basic.NET 10 が必要となります。 C# でエクステンションを書くときは、 こちら (英語)をクリックしてください。 ステップ 1: エクステンションの作成 Visual...
  • Wiki Page: Bienvenido a Small Basic (es-ES)

    Small Basic es un proyecto que está destinado a traer de vuelta a la "diversión" a la programación. Al proporcionar un lenguaje de programación de pequeño y fácil de aprender en un entorno de desarrollo y acogedor, Small Basic hace que la programación de una brisa. Ideal para niños y adultos...
  • 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 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: 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: 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: 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 3 of 5 (116 items) 12345
Can't find it? Write it!