Error 80010108 when using FolioExportOCX from Excel 2007

D

Dave Nuttall

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top