'Macro ToolTable Report'newer version will poll up To 225 tools And skip Any tool With a description of "empty"' overwrite file = C:\Documents and Settings\All Users\Desktop\ToolInfo.txttextFilePath = "C:\mach3\ToolInfo.txt"Set objFSO = CreateObject("Scripting.FileSystemObject")Set objTextFile = objFSO.CreateTextFile(textFilePath)Do Until num=253num=num+1N = GetToolDesc(num)D = GetToolParam(num,1)L = GetToolParam(num,2)WD= Gettoolparam(num,3)WL= Gettoolparam(num,4)If N <>"Empty" ThenobjTextFile.WriteLine("*Tool"& num &"  * "& N &" *Diameter: "& D &" *Length: "& L &" *Wear Diam"&WD &" *WearLength"&WL & Chr(13) & Chr(10))ElseEnd IfLoopobjTextFile.CloseDim sCOMMAND As String sCOMMAND="notepad.exe c:\mach3\toolinfo.txt" Shell("c:\windows\system32\cmd.exe /c" & sCOMMAND)End    