How do you get the output like 1 23 456 in vbscript?

1 answer

Answer

1237607

2026-07-19 04:15

+ Follow

you want to output "1 23 456" in VB

If you are making a console application then do the following:

console.writeline("1 23 456")

console.read() 'This command makes the console pause until a button is clicked

If you are using a Windows form application, open the form.load sub ( by double clicking on it ) and add the following code:

msgbox("1 23 456")

Anyways theres another way, by adding a label and either changing its Text property in the properties bar or adding the following code into form.load sub:

label1.text = "1 23 456"

I hope that helped.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.