> Hi,
>
>
> I did following code for opening excel sheet from my foxpro programm(form button click).Its opening excel sheet but when I close it it shows me error that "OLE IDispatch exception code 0 from Microsoft Office Excel: 'icrosoft Excel.xlsx' could not be found.Check the spelling of the file name,and verify that the file location is correct"
>
> LOCAL lobject, lcFile,lobject1
> lobject = CREATEOBJECT('Excel.Application')
> lobject.Visible = .T.
> lobject.Workbooks.Open(m.lobject)
>
> Can you tell me solution.
>
> Thanks,
> vaishali maske
LOCAL oa as object, oa
xlsFile=GETFILE('xls')
oa=CREATEOBJECT('excel.application')
oa.Visible=.t.
oa.Workbooks.Open(m.xlsfile)
Thanks
Vinod Kabdal