Hola, estoy intentando guardar un libro de excel con visual basic y me sale este error: Error de automatizacion
este es mi codigo , ya hice la referencia a Microsoft excel 11.0 object library
Option Explicit
Private Sub Command1_Click()
Dim xlApp As Excel.Application
Dim xlBook As Excel.Workbook
Dim xlSheet As Excel.Worksheet
Set xlApp = New Excel.Application
Set xlBook = xlApp.Workbooks.Add
Set xlSheet = xlBook.Worksheets(1)
xlSheet.Cells(1, 1).Value = "Celda 1,1"
xlBook.SaveAs ("C:Documents and SettingsAdministradorEscritorio123.xls")
xlBook.Close
Set xlBook = Nothing
xlApp.Quit
Set xlApp = Nothing
End Sub
No se cual puede ser el error en la ayuda de visual basic dice que esa es la manera