Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
59 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
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
59 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
We take content rights seriously. If you suspect this is your content, claim it here.
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