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.
Copyright © 2026 eLLeNow.com All Rights Reserved.