github VBAndCs/sVB-Small-Visual-Basic v1.4
Small Visual Basic v1.4.2

latest releases: v2.8, v2.7, v2.6...
2 years ago

What's new in sVB v1.4

  1. Many enhancements in the WinForms controls and bug fixes.

  2. You can split the code line over multi-lines by using the _ symbol at the end of each line segment. ex:

Dim x = "First Line" + _
            "Second Line"

You can use _ at any position expet before of after the dot ..

  1. You can also split the line at some positions without using the _ . These positions are:
  • after the following symbols: ,, =, +, -, *. /, (, [, {.
  • before the following symbols: +, -, *. /, ), ], }.

Ex:

x = y 
   + Text.GetSubText(
      "some text",
      6,
      3
)
  1. You can add comments at the end of any line segment. Ex:
Function Add(  ' Adds two numbers
   a, _   ' first number
   b      ' second number
)
   Return a + b 
EndFunction
  1. Adding an (Add new function) command to the upper right dropdown list in the code editor

  2. Enhancing the auto completion list.

  3. Enhancing the auto formatting of code, to adjust indentation of sub lines, and adjust spaces between tokens.

  4. The code editor now highlights any matching pairs such as (), [] and {}. It also highlights the keywords of the Sub, Function, If, For, and While bolcks whenever you insert the caret on on of them. You can move to the next highlighted token by pressing F4 or Ctrl+Shift+Down, and you can move to the previous highlighted token by pressing Shift+F4 or Ctrl+Shift+Up.
    You can also press such shortcuts keys on any line even there is no highlighted keywords. This will highlight the nearest block that contains the statement, and move to the neareest keyword up or down according to the shourtcut keys you are using.

Don't miss a new sVB-Small-Visual-Basic release

NewReleases is sending notifications on new releases.