I can open the workbook but cant open the worksheet i need.
Here is the code i have so far.....

Private Sub btnstaff_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnstaff.Click

Dim ApExcel As Object 'To open Excel

ApExcel = CreateObject("Excel.application") 'Creates an object
ApExcel.Visible = True ' So you can see Excel
ApExcel.Workbooks.open("C:\documents and settings\mike\desktop\dss.xls")


I want to be able to define the worksheet (in this case, sheet 3)

Please help