Hi

I'm writing a VBA program to open Excel, but I don't know how to open a specific file/spreadsheet to work with.

this is what i have so far...


Dim oApp as Object

set oApp = CreateObject("Excel.Application")
oApp.Visible = true




and i want to open dummy.xls...how do I do this? Thanks!

-Tom