@@ -20,20 +20,20 @@ public class MockVbeBuilder
20
20
private readonly Mock < IVBEEvents > _vbeEvents ;
21
21
22
22
#region standard library paths (referenced in all VBA projects hosted in Microsoft Excel)
23
- public static readonly string LibraryPathVBA = @"C:\PROGRA~2 \COMMON~1\MICROS~1\VBA\VBA7.1\VBE7.DLL" ; // standard library, priority locked
24
- public static readonly string LibraryPathMsExcel = @"C:\Program Files (x86) \Microsoft Office\Office15\EXCEL.EXE" ; // mock host application, priority locked
25
- public static readonly string LibraryPathMsOffice = @"C:\Program Files (x86) \Common Files\Microsoft Shared\OFFICE15\MSO.DLL" ;
26
- public static readonly string LibraryPathStdOle = @"C:\Windows\SysWOW64 \stdole2.tlb" ;
27
- public static readonly string LibraryPathMsForms = @"C:\Windows\SysWOW64 \FM20.DLL" ; // standard in projects with a UserForm module
23
+ public static readonly string LibraryPathVBA = @"C:\PROGRA~1 \COMMON~1\MICROS~1\VBA\VBA7.1\VBE7.DLL" ; // standard library, priority locked
24
+ public static readonly string LibraryPathMsExcel = @"C:\Program Files\Microsoft Office\Office15\EXCEL.EXE" ; // mock host application, priority locked
25
+ public static readonly string LibraryPathMsOffice = @"C:\Program Files\Common Files\Microsoft Shared\OFFICE15\MSO.DLL" ;
26
+ public static readonly string LibraryPathStdOle = @"C:\Windows\System32 \stdole2.tlb" ;
27
+ public static readonly string LibraryPathMsForms = @"C:\Windows\system32 \FM20.DLL" ; // standard in projects with a UserForm module
28
28
#endregion
29
29
30
30
public static readonly string LibraryPathVBIDE = @"C:\Program Files (x86)\Common Files\Microsoft Shared\VBA\VBA6\VBE6EXT.OLB" ;
31
- public static readonly string LibraryPathScripting = @"C:\Windows\SysWOW64 \scrrun.dll" ;
32
- public static readonly string LibraryPathRegex = @"C:\Windows\SysWOW64 \vbscript.dll\3" ;
31
+ public static readonly string LibraryPathScripting = @"C:\Windows\System32 \scrrun.dll" ;
32
+ public static readonly string LibraryPathRegex = @"C:\Windows\System32 \vbscript.dll\3" ;
33
33
public static readonly string LibraryPathMsXml = @"C:\Windows\System32\msxml6.dll" ;
34
- public static readonly string LibraryPathShDoc = @"C:\Windows\SysWOW64 \ieframe.dll" ;
35
- public static readonly string LibraryPathAdoDb = @"C:\Program Files (x86) \Common Files\System\ado\msado15.dll" ;
36
- public static readonly string LibraryPathAdoRecordset = @"C:\Program Files (x86) \Common Files\System\ado\msador15.dll" ;
34
+ public static readonly string LibraryPathShDoc = @"C:\Windows\System32 \ieframe.dll" ;
35
+ public static readonly string LibraryPathAdoDb = @"C:\Program Files\Common Files\System\ado\msado15.dll" ;
36
+ public static readonly string LibraryPathAdoRecordset = @"C:\Program Files\Common Files\System\ado\msador15.dll" ;
37
37
38
38
//private Mock<IWindows> _vbWindows;
39
39
private readonly Windows _windows = new Windows ( ) ;
0 commit comments