The following VBScript will print out the contents of a worksheet in Excel from CX-Supervisor:
' Launch Excel
dim app
set app = createobject("Excel.Application")
' Open workbook
dim wb
set wb = app.Workbooks.Open("D:\CX-SupervisorApps\mysheet.xls")
app.application.sheets(1).printout
'Close, quit and tidy up
app.Workbooks.Close
app.Quit
Set app =
Nothing