HighDarkTemplar Posted March 1, 2005 Share Posted March 1, 2005 I've heard a little about the so called scripts but how do i make them, how do i edit them? What software do i use? Any guides where i might start?Best RegardsNerevarEdit: I am sorry about the post error, could some moderators please delete it? Link to comment Share on other sites More sharing options...
HighDarkTemplar Posted March 1, 2005 Author Share Posted March 1, 2005 Also, I am using WinXPPro if that does anything......Best RegardsNerevar Link to comment Share on other sites More sharing options...
dman Posted March 1, 2005 Share Posted March 1, 2005 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 More sharing options...
gunsmokingman Posted March 2, 2005 Share Posted March 2, 2005 Here is A VBS Box That Says Hellomsgbox "hello", 0+48,"Vbs Box"Here A Wscript PopupThat Says Hello And closes it self CreateObject("wscript.shell").popup "Hello",3,"WsPopUp Box",0 + 32Here A Vbs Inputbox That Will Pass What You Type InTo The Next WsPopUp BoxstrUser= 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now