Computer Science, asked by anurag7180, 11 months ago

write a program to display"welcome"using vb script

Answers

Answered by tejasgupta
6

Hi. To do so, firstly, create a new VB project. Drag and drop a Label Control from the toolbox on to the form. Double click on the form's empty space and the code window will open with the pre-written form_load event. In the event, write:

label1.Text = "Welcome!"

And run the program. The program will be a form with the text Welcome written on it.

Hope it helps.

Similar questions