View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dave Nuttall Dave Nuttall is offline
external usenet poster
 
Posts: 4
Default Error 80010108 when using FolioExportOCX from Excel 2007

I have a simple VBA subroutine (below) that fails with 80010108 "Method
'ExportToFFF' of object '_DFolioExportOCX' failed".

Option Explicit
Sub NFOExport()
'
' NFOExport Macro
'
' Keyboard Shortcut: Ctrl+e
'
Dim NFOE As FolioExportOCX
Set NFOE = New FolioExportOCX

NFOE.OutFileName = "NFOETest"
NFOE.OutPath = "C:\Temp"
NFOE.Password = "*******"
NFOE.Query = "Nuttall"
NFOE.SourceNFO = "C:\NFO\Test.nfo"

NFOE.ExportToFFF

End Sub

As far as I can tell, I'm not comitting any of the sins documented in
Q319832, so I have run out of ideas on how to fix this.

Can anyone help?

TIA, Dave