Print An Excel sheet from acess help

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Please!!!!
I just need help on how to select an excel spreadsheet and print sheet1 on
click

Mike
 
Mike said:
Please!!!!
I just need help on how to select an excel spreadsheet and print sheet1 on
click

Something like this:

Private Sub PrintXL_Click()

Dim appXL As Excel.Application
Dim wkb As Excel.Workbook
Dim wks As Excel.Worksheet

Set appXL = New Excel.Application
Set wkb = appXL.Workbooks.Open("C:\Your Excel File.xls")
Set wks = wkb.Worksheets(1)

'appXL.Visible = True

wks.PrintOut 'or wks.PrintPreview only if you use the line above

End Sub

You can pick a worksheet with the code here:

http://www.mvps.org/access/api/api0001.htm
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top