Hello
Because Excel 2010 can't save DBF format files, I though I could work around that by opening from the working file's macro an instance of Excel 2003. I more-or-less seem to have done that using:
Dim xlApp As Excel.Application
Set xlApp = CreateObject("Excel.Application.11")
'''
xlApp.Workbooks.Open Filename:=FileString, UpdateLinks:=0
Set PESdbf = xlApp.ActiveWorkbook
etc
''
However, once I need to start writing to the file, I can't seem to find a way to make it the active workbook. (I have, of course tried PESdbf.activate)
Has anyone any suggestions?
Thank you
Because Excel 2010 can't save DBF format files, I though I could work around that by opening from the working file's macro an instance of Excel 2003. I more-or-less seem to have done that using:
Dim xlApp As Excel.Application
Set xlApp = CreateObject("Excel.Application.11")
'''
xlApp.Workbooks.Open Filename:=FileString, UpdateLinks:=0
Set PESdbf = xlApp.ActiveWorkbook
etc
''
However, once I need to start writing to the file, I can't seem to find a way to make it the active workbook. (I have, of course tried PESdbf.activate)
Has anyone any suggestions?
Thank you