Dear Mr.Excel;
I have the following fragment in my Add-in (written with VBA7.1):
it behaves as expected under Windows ver.10.0.19045 with XL 2307(16626.20134)
but fails with RTErr 53 under Windows ver.10.0.22621 with XL 2307(16626.20170).
The Error message (File not found) pops-up regardless of where I put the DLL file:
I've tried several folders: C:\WINDOWS\SYSTEM32; Excel.exe location; Add-Ins folder,
(the DLL is compiled with MSVS2022; all dependents are present in C:\WINDOWS\SYSTEM32).
What else should I try? Any advice is strongly appreciated. TIA =S.Br.=
I have the following fragment in my Add-in (written with VBA7.1):
VBA Code:
Option Explicit
Public Declare PtrSafe Sub mysubTst Lib "mylibTst.dll" ()
Public Sub Tst()
mysubTst
End Sub
but fails with RTErr 53 under Windows ver.10.0.22621 with XL 2307(16626.20170).
The Error message (File not found) pops-up regardless of where I put the DLL file:
I've tried several folders: C:\WINDOWS\SYSTEM32; Excel.exe location; Add-Ins folder,
(the DLL is compiled with MSVS2022; all dependents are present in C:\WINDOWS\SYSTEM32).
What else should I try? Any advice is strongly appreciated. TIA =S.Br.=