Tuesday, July 2, 2013

Set an input Box

Input box is important to VBS as it can provide different input to achieve result.

 

 

myInputBox = Inputbox("Here will show up the detail of the description","This is Input Box")

 

 

 

 

 

 

Related Posts:

  • Set an input BoxInput box is important to VBS as it can provide different input to achieve result.  myInputBox = Inputbox("Here will show up the detail… Read More
  • Read Registry from Local or remote Machine'to read HKEY Local Machine registryconst HKEY_LOCAL_MACHINE = &H80000002'prompt for the machine name to input for scanning, the in front part is … Read More
  • Pause / WaitUsing sleep function to pause your program Wscript.Echo "Time Start" 'here is the most important line WScript.sleep 6000 Wscript.Echo "6 Second … Read More
  • Delete entire empty rollsFunction delRolls () On Error Resume Next worksheet.Columns("A:A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete … Read More
  • Write output fileCreate a filesystem Object Set objFSO = CreateObject("Scripting.FileSystemObject")  Create a output file’s path Se… Read More

0 comments:

Post a Comment