There are quite a few entries on here about Error Code 429, but I want to make it clear that this is a slightly different question. This is a VBA excel program.
The code causing the problem :
Dim i As Integer
Dim j As Integer
Dim builder As String
Dim file As Object
Dim csv As Object
Set file = CreateObject("Scripting.FileSystem")
Set csv = file.CreateTextFile("configexport.csv")
The program breaks on the
Set file = CreateObject("Scripting.FileSystem")
I have a reference to scrrun.dll
I have registered scrrun.dll using an administrator command prompt and the command 'regsvr32 scrrun.dll'
I have restarted my computer
I am still seeing the error
NOTE: All other questions on this topic get resolved by this point so I do not consider this a duplicate. Any help would be appreciated.