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
'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