Wednesday, 26 July 2017

Write a code to print numbers from 5 to 0?

For i=5 To 0 step -1
WScript.Echo i
Next

In what way program "hello world" you can write in VBscript?

In VBscript, you can write hello world in two ways, the program will display a message box with text hello world.
  1. MsgBox "Hello World"
  2. Echo "Hello World"