' ' Example of implementing "include files" in VB Script. ' ' Originally written by Forefront Technologies. ' http://forefronttechnologiesonline.com ' ' You can use this program for your own use as long ' as you keep the comment lines above, intact. ' execute "incFile = ""myLibrary.vbs"":Set objFS = CreateObject(""Scripting.FileSystemObject""):set objIFile = objFS.GetFile(incFile):set objITS = objIFile.OpenAsTextStream(1, 0):Execute objITS.Read(objIFile.Size):objITS.Close:set objITS = nothing:set objIFile = nothing:set objFS = nothing" writeLog "Hello world! "