Blog Post

Small Basic Blog
1 MIN READ

Small Basic 1.3 (for Microsoft Store) available now!

Ed Price's avatar
Ed Price
Former Employee
Feb 13, 2019
First published on MSDN on Aug 07, 2017

Authored by Liz Bander




Small Basic 1.3 is now available to download from the Windows Store ! We've got some great new features, including support for three new languages, a new Startup Help page when it loads, and of course, more bug fixes.  If you've already installed it through the Windows Store, your app will update.

NOTES :

  • Small Basic for Windows Store doesn't support Extensions

  • Small Basic 1.3 for Download Center (which does support Extensions) is coming soon


If you haven't installed the Windows Store version, never fear! Simply uninstall the old Small Basic through Control Panel, go get Small Basic on the Windows Store and install it from there.
Published Feb 13, 2019
Version 1.0

1 Comment

  • M_Hamdy's avatar
    M_Hamdy
    Copper Contributor

    Would MS introduce Small Visual Basic to kids?

    I've built Small Visual Basic (sVB) on top of Small Basic, with many enhancements in syntax and code editor, in addition to an easy to use form designer and a small windows forms library. You can download the latest version from GitHub:

    https://github.com/VBAndCs/sVB-Small-Visual-Basic/releases/tag/v1.8


    sVB is still a dynamic language, but it offers good support for basic data types like String, Double, Date, Array and Color by inferring the variable type from its initial value.
    sVB is semi object oriented, as it makes variables act like objects by accessing extension methods from Text, Math, Date, Array, Color and Control classes. All of this happens behind the scene to make the code shorter and easier for kids. The kid has only to drag a TextBox and a Button on the form, double click the button to switch to its click event handler, and write the code directly, such as:
    TextBox1.Text = "Hello sVB!"
    The source code of sVB is fully written in VB .NET:
    https://github.com/VBAndCs/sVB-Small-Visual-Basic
    So, can MS introduce this enhanced version to kids?
    It is compatible with SB with a few breaking changes (esp variable domains), and it can be more attractive to nowadays kids, that kept asking me about opening new forms, dealing with dates, and using AI (the latter is still missing of course, and this is why kids are eager to learn Python, and thi sis why I am thinking of some support of http://ml.net/ in sVB in the future!)