Jump to content

Recommended Posts


If you are asking about what I think you are asking about (vb script) all you need is a text editor to create the program scripts. Everything else is already on the computer.

Scripting is the windows version of dos batch files. It is useful for automating tasks in the same way as batch files (although you could write a whole app in script if you were a masochist). Windows scripts can be written in either vbscript or jscript, but vb is most common.

Try a google search for "vb script tutorial" or "windows script host" and you will find millions of examples.

Link to comment
Share on other sites

Here is A VBS Box That Says Hello

msgbox "hello", 0+48,"Vbs Box"

Here A Wscript Popup

That Says Hello And closes it self

CreateObject("wscript.shell").popup "Hello",3,"WsPopUp Box",0 + 32

Here A Vbs Inputbox That Will Pass What You Type In

To The Next WsPopUp Box

strUser= InputBox("Type In Your Reply","VBS Inputbox","<-Type Reply Here->")
CreateObject("wscript.shell").popup "You Type In:" & vbCrLf & strUser, 3, "WsPopUp Box", 0 + 32

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...