answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

#include <stdio.h>

int main (void)

{

puts ("1 23 456 78910");

return 0;

}

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you get the output like 1 23 456 in vbscript?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions