0% found this document useful (0 votes)
56 views

Simple Notepad Programming 3

This 3 sentence document provides instructions for creating a simple Notepad program that asks for a user's name using an input box, stores the response in a variable, and displays a message box greeting with the user's name. The instructions are to create a new file in Notepad, type 3 lines of code to prompt for and store the name and display the greeting, then save the file as Ask.vbs.

Uploaded by

Himura Kenshin
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views

Simple Notepad Programming 3

This 3 sentence document provides instructions for creating a simple Notepad program that asks for a user's name using an input box, stores the response in a variable, and displays a message box greeting with the user's name. The instructions are to create a new file in Notepad, type 3 lines of code to prompt for and store the name and display the greeting, then save the file as Ask.vbs.

Uploaded by

Himura Kenshin
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Simple Notepad Programming 3

Crete a new file in Notepad then type:



dim name
name=inputbox("What is your name?")
msgbox("Hello," + name)

Click File, then Save, type Ask.vbs, then save or enter.

You might also like