You have yet to answer the question I asked, what properties are available?Sorry,
The function is .Open("file")
With this function i see the file being opened. I figured out how to not see the excel.
I have
Dim oExcel As Excel.ApplicationClass
Dim oBook As Excel.WorkbookClass
Dim oBooks As Excel.Workbooks
Dim oBooks2 As Excel.Workbooks
'Start Excel and open the workbook.
oExcel = CreateObject("Excel.Application")
oExcel.Visible = False
oBooks = oExcel.Workbooks
oBooks2 = oExcel.Workbooks
oBook = oBooks.Open("BLAH")
How do i not see the process of opening the file now?