This site uses cookies for analytics, personalized content and ads. By continuing to browse this site, you agree to this use.
Learn more
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
Tag Cloud
.net
Active Directory
AD DS
ASP.NET
azure
BizTalk
BizTalk Server
C#
C# .NET
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2013
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
fr-FR
has Back to Top link
has code
has command
has comment
has Conclusion
has download link
has Gallery download
has image
Has Link
has links
has Other Languages
has reference
has References
has See Also
has summary
Has Table
Has TOC
has video
How To
Hyper-V
it-IT
Link Collection
Lync
magazine article
marcelo strippoli
mehmet parlakyiğit
Microsoft
Microsoft Azure
Multi Language Wiki Articles
MVP
needs work
Office 365
pgtag
Português Brasil
PowerShell
pt-BR
SCCM
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint 2016
Sharepoint Online
Small Basic
SQL
SQL Server
SQL Server 2012
step by step
stub
System Center
System Center 2012
TAT
TAT Members
TechNet Guru
TechNet Guru Gold Medal Winner
TechNet Guru Medal Winner
TechNet Wiki
TechNet Wiki Featured Article
Translated into Portuguese
troubleshooting
tr-TR
T-SQL
Visual Studio
VS
Wiki
Windows
Windows 10
Windows 7
windows 8
Windows Phone
Windows Phone Migration Content
windows server
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
windows server 2012 r2
Wiki
>
All Tags
>
small basic
Tagged Content List
Wiki Page:
Small Basic Known Issue: 52143 - Turtle.MoveTo Operation Sometimes Causes Error
Nonki Takahashi
Series of know issues articles are showing known issue itself about Small Basic and it's workaround. Table of Contents Phenomenon Workaround See Also Phenomenon Small Basic causes following "Value was either too large or too small for a Decimal" error in a program with Turtle...
on
27 Nov 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 6: Beginning Graphics
Ed Price - MSFT
Small Basic > Getting Started Guide > Chapter 6: Beginning Graphics Table of Contents Introducing GraphicsWindow Setting up the Graphics Window Drawing Lines Drawing and Filling Shapes So far in all our examples, we’ve used the TextWindow to explain the fundamentals of the Small...
on
15 Nov 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 5: Loops
Ed Price - MSFT
Small Basic > Getting Started Guide > Chapter 5: Loops Table of Contents For Loop While Loop For Loop Let’s take a program we wrote in the previous chapter. i = 1 start: TextWindow.WriteLine(i) i = i + 1 If (i < 25) Then Goto start EndIf ...
on
15 Nov 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 4: Conditions and Branching
Ed Price - MSFT
Small Basic > Getting Started Guide > Chapter 4: Conditions and Branching Table of Contents If Else Indentation Even or Odd Branching Endless execution If Going back to our first program, wouldn’t it be cool that instead of saying the general Hello World , we could say...
on
15 Nov 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 3: Introducing Variables
Ed Price - MSFT
Small Basic > Getting Started Guide > Chapter 3: Introducing Variables Table of Contents Using Variables in our program Analysis of the program Rules for naming Variables Playing with Numbers A Simple Temperature Converter Using Variables in our program Wouldn’t it be nice...
on
15 Nov 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 2: Understanding Our First Program
Ed Price - MSFT
Small Basic > Getting Started Guide > Chapter 2: Understanding Our First Program Table of Contents What really is a computer program? Small Basic Programs Back to Our First Program Our Second Program What really is a computer program? A program is a set of instructions...
on
15 Nov 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 10: Arrays
Ed Price - MSFT
Small Basic > Getting Started Guide > Chapter 10: Arrays Table of Contents Review Variables What is an array? Indexing an array More than one dimension Using Arrays to represent grids Review Variables By now you must be well versed with how to use variables – after all you have...
on
15 Nov 2018
Wiki Page:
Small Basic: Comment Dessiner un Triangle (fr-FR)
Peter Geelen
Si vous savez dessiner un rectangle, comment pouvez-vous dessiner un triangle ? Regardez l'image suivante. Vous avez déjà dessiné un carré avec GraphicsWindow.DrawRectangle(100, 200, 200, 200). Donc, le triangle que vous devez dessiner à trois points (x1 = 100, y1 = 200), (x2 = 300, y2 = 200),...
on
15 Nov 2018
Wiki Page:
Small Basic: Shapes
Peter Geelen
This article is about Shapes object in Microsoft Small Basic programming language. Table of Contents Type of Shapes Special Features Movable Rotatable Zoomable Can Be Transparent Hidable Removable See Also Type of Shapes There are following 5 types of Shapes. Ellipse Image Line Rectangle...
on
15 Nov 2018
Wiki Page:
Small Basic Reference Documentation: Desktop Object
Somdip Dey - MSP Alumnus
Small Basic: Reference Documentation > Desktop Table of Contents Desktop Properties Width (This property is read-only.) Height (This property is read-only.) Operations SetWallPaper fileOrUrl Returns See Also Desktop This class provides methods to interact with the desktop. ...
on
29 Oct 2018
Wiki Page:
Small Basic: Default Value
Nonki Takahashi
This article shows Small Basic default values for properties and so on. Default Values Property Value Clock.Date N/A Clock.Day N/A Clock.ElapsedMilliseconds N/A Clock.Hour N/A Clock.Millisecond N/A Clock.Minute...
on
8 Oct 2018
Wiki Page:
Small Basic Getting Started Guide: Chapter 1: An Introduction
Nonki Takahashi
Small Basic > Getting Started Guide > Chapter 1: An Introduction Table of Contents Small Basic and Programming The Small Basic Environment Install Small Basic Our First Program Saving our program See Also Small Basic and Programming Computer Programming is defined as the...
on
15 Jul 2018
Wiki Page:
Small Basic: Compatible Systems
Nonki Takahashi
This article introduces Small Basic compatible systems and tools. Small Basic is a .NET programming language. Table of Contents Fun Basic Small Basic Prime Visual Programming Tool See Also Other Resources Fun Basic Fun Basic is a Windows Store App written by Phil Trelford. Fun Basic supports...
on
30 May 2018
Page 17 of 37 (925 items)
«
15
16
17
18
19
»