PS4000 Excel Macro not finding ps4000wrap.dll

Post your VB and VBA discussions here
Post Reply
Khalid
Newbie
Posts: 0
Joined: Tue May 28, 2013 3:47 am

PS4000 Excel Macro not finding ps4000wrap.dll

Post by Khalid »

I am using a PicoScope 4224 and using a 64 bit system runing windows 7. When I click the "Get Data" macro in Excel I get an error message: Run time Error 53 File not found ps4000wrap.dll even though I have all 3 DLLs ('ps4000wrap.dll', 'ps4000.dll' and 'picoIpp.dll) saved in the System 32 directory. Any suggestions?

Hitesh

Re: PS4000 Excel Macro not finding ps4000wrap.dll

Post by Hitesh »

Hi Khalid,

Try providing the full path to the wrapper dll in your Declare Function statements.

e.g.

Code: Select all

Declare Function GetStreamingLatestValues Lib "C:\myPicoDlls\ps4000wrap.dll" (ByVal handle As Integer) As Integer
I hope this helps.

Post Reply