March 1, 200521 yr 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?
March 1, 200521 yr 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.
March 2, 200521 yr 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
Create an account or sign in to comment