Quantcast
Channel: Windows 7 Miscellaneous forum
Viewing all articles
Browse latest Browse all 11372

Error 429 ActiveX can't create object from VBScript but not from VBA

$
0
0

Using the VBScript code below on Win 7 (and 8) I get Error 429 at line 2 on CreateObject when I run it with cscript. The Textextractor dll registers OK using regsvr32 from an elevated command prompt, and does not show any missing components when examined with depends.exe

Dim converter 
Set converter = CreateObject("TextExtractor.TextExtractorObj")
converter.ExtractText cronshaw.docx, cronshaw.txt
set converter = Nothing

But using VBA called from MS Access 2007 on Win 7 (and  8) the code below ran OK:

Public Sub Test()
Dim converter As Object
Set converter = CreateObject("TextExtractor.TextExtractorObj")
converter.ExtractText CurrentProject.Path & "\Cronshaw.docx", CurrentProject.Path & "\Cronshaw.txt"
End Sub

Any ideas why the VBScript fails where the VBA runs?


Viewing all articles
Browse latest Browse all 11372

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>