TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
Small Basic
Tagged Content List
Wiki Page:
Small Basic: How to Use Trigonometric Functions
Ed Price - MSFT
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...
on
1 Jul 2013
Wiki Page:
Download the Small Basic Curriculum
Ed Price - MSFT
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...
on
28 Jun 2013
Wiki Page:
Small Basic: How to Convert Multi-Line Text into an Array of Lines
Ed Price - MSFT
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 ) +...
on
23 Jun 2013
Wiki Page:
Small Basic Curriculum
Ed Price - MSFT
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...
on
20 Jun 2013
Wiki Page:
Beginning Microsoft Small Basic: Chapter 4: Small Basic Program Design, Input Methods
Ed Price - MSFT
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...
on
20 Jun 2013
Wiki Page:
Beginning Microsoft Small Basic: Chapter 1: Introducing Small Basic
Ed Price - MSFT
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...
on
20 Jun 2013
Wiki Page:
Get Started with Small Basic
Ed Price - MSFT
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 ...
on
13 Jun 2013
Wiki Page:
Small Basic: Did You Know?
Nonki Takahashi
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...
on
11 Jun 2013
Wiki Page:
Small Basic: デバッグ方法 (ja-JP)
Nonki Takahashi
Table of Contents TextWindow.WriteLine() で変数の内容を表示する "If debug Then..." を使いデバッグのコードを書く サブルーチンのためのテストプログラムを書く バグの一覧表を作る エラーメッセージの意味を知る 「昇格する」と Visual Studio のデバッガを使う まとめ 関連項目 他の言語 この記事では Small Basic 言語で書かれたプログラムの以下のようなデバッグ手段を紹介します。また、発行されたプログラムについてデバッグの実例を示します。 TextWindow...
on
11 Jun 2013
Wiki Page:
Small Basic: How to Debug
Nonki Takahashi
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 ...
on
11 Jun 2013
Wiki Page:
Small Basic: How to Draw a Triangle
Ed Price - MSFT
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...
on
7 Jun 2013
Wiki Page:
Small Basic Curriculum: Lesson 2.1: Graphics Window
Ed Price - MSFT
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...
on
6 Jun 2013
Wiki Page:
Small Basic: VB.NET でエクステンションを作成する方法 (ja-JP)
Carsten Siemens
Table of Contents ステップ 1: エクステンションの作成 ステップ 2: 動作させるまでの手順 ステップ 3: 次のステップ 他の言語 この記事では、Microsoft Small Basic に追加する簡単なエクステンション(拡張機能)を作成する方法を紹介します。あらかじめ、Small Basic、.NET Framework 3.5 および Visual Basic.NET 10 が必要となります。 C# でエクステンションを書くときは、 こちら (英語)をクリックしてください。 ステップ 1: エクステンションの作成 Visual...
on
29 May 2013
Wiki Page:
Bienvenido a Small Basic (es-ES)
Ed Price - MSFT
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...
on
20 May 2013
Wiki Page:
Small Basic Curriculum: Show What You Know Answer Key
Ed Price - MSFT
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...
on
20 May 2013
Wiki Page:
Small Basic Curriculum: Lesson 2.4: Sound, Program, and Text Objects
Ed Price - MSFT
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...
on
19 May 2013
Wiki Page:
Small Basic Curriculum: Lesson 2.3: Exploring Shapes
Ed Price - MSFT
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 ...
on
19 May 2013
Wiki Page:
Small Basic Curriculum: Lesson 2.2: Turtle Graphics
Ed Price - MSFT
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...
on
19 May 2013
Wiki Page:
Small Basic: The 14 Keywords
Ed Price - MSFT
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: ...
on
18 May 2013
Wiki Page:
Small Basic Sample: Arrays
Ed Price - MSFT
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 '...
on
15 May 2013
Wiki Page:
Small Basic Sample: Snake
Ed Price - MSFT
Code Initialize() While (GameState <> "") DoGameLoop() EndWhile Program.End() Sub Initialize InitializeVariables() InitializeScreen() EndSub Sub InitializeVariables Array.SetValue("DeltaX","North",0) Array.SetValue("DeltaX","East"...
on
15 May 2013
Wiki Page:
Small Basic Sample: JetLag
Ed Price - MSFT
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...
on
15 May 2013
Wiki Page:
Small Basic Sample: Flickr Collage
Ed Price - MSFT
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...
on
15 May 2013
Wiki Page:
Small Basic: Programming Tips
Richard Mueller
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...
on
2 May 2013
Wiki Page:
Small Basic: Text Basics
Carsten Siemens
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...
on
29 Apr 2013
Page 3 of 5 (116 items)
1
2
3
4
5
Can't find it? Write it!
Post an Article