在Excel VBA中实现外部Yoctopuce DLL

时间:2018-03-26 08:12:44

标签: vba excel-vba excel

我正在使用Windows 10(64位)和Excel 2016(32位),并希望在VBA中实现Yocto-4-20mA-Tx模块(https://www.yoctopuce.com/EN/products/usb-actuators/yocto-4-20ma-tx)的控制。

根据文档,DLL是用C语言编写的,下面是三个基本功能。

int yapiInitAPI(int connection_type, char *errmsg);
int yapiUpdateDeviceList(int forceupdate, char *errmsg);
int yapiHTTPRequest(char *device, char *request, char *buffer, int buffsize, int *fullsize, char *errmsg);

我已阅读(但可能未完全理解)以下内容:

我尝试在VBA模块中实现第一个函数(yapiInitAPI)。 DLL位于应用程序文件夹中

Option Explicit
Private Declare Function yapiInitAPI Lib "yapi" (ByVal connection_type As Long, ByVal errmsg As String) As Long

Sub myInit()
Dim nReturn As Long
Dim sError As String

nReturn = yapiInitAPI(1, sError)

MsgBox sError
MsgBox nReturn

End Sub

运行此结果

  

“运行时错误'49':错误的DLL调用约定”

在yapiInitAPI(1,sError)行上。

以下是一些问题:

  1. 所有DLL都可以在VBA中实现,还是必须遵循标准?
  2. 我认为我实现为“ByVal errmsg As String”的“char * errmsg”是问题,如何将“char *”翻译成VBA?
  3. 当我从yoctopuce下载DLL时,我得到32位和64位两个版本,我应该使用特定版本。如果是,它是否依赖于我的操作系统或Office版本?
  4. 我将DLL放在我的应用程序文件夹中(即存储.xlsm的地方)并且可以在VBA中使用“Lib'yapi'”访问它,如果我把它放在Windows-System32中(并将其从应用程序文件夹中删除)它抱怨找不到档案。这不应该是一样的吗?

1 个答案:

答案 0 :(得分:1)

该文档还提到“ yapi.dll中的每个入口点都是重复的。您将找到一个常规C-decl版本和一个Visual Basic 6兼容版本,前缀为vb6 _。”: - )

您必须为调用者应用程序和DLL使用相同的32/64位体系结构。