Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. youngso

    Get IP address from text file

    'This read the text file and validate the ip address before it put's on the log file. Set objFSO = CreateObject("Scripting.FileSystemObject") Const ForReading = 1, ForWriting = 2, ForAppending = 8 ReadFile "c:\scripts\machinelist.txt" 'This subroutine read the contain and writes to another...
  2. youngso

    How determine user's office version via VBS?

    Here is quick and simple method to check office version via VBS? Set objWord = CreateObject("Word.Application") Select Case objWord.Version Case "12.0" MsgBox ("Office 2007 is installed") Case "11.0" MsgBox ("Office 2003 is installed") Case "10.0" MsgBox ("Office 2000 is installed") End...

Part and Inventory Search

Back
Top