本文介绍了在Clarion中使用.NET中的dll的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好
我之前问过类似的问题,但我还有另一个问题
我在Visual Studio 2010中将一个项目做成一个类库,并制作一个COM组件,现在我想从Clarion调用此方法,我将dll放在Clarion项目文件夹中,但不起作用,我必须使用哪些文件,我该怎么做?

这是我在声明中使用的代码,但是什么也没做


 WorkOpenWin例程
   数据
Interop01长
   代码
   Interop01 = CREATE(0,CREATE:OLE)
   Interop01 {PROP:Create} ='Interop01.Interop01Class'
   Interop01 {'CallDotnet(来自号角的消息")'} 



谢谢



Hello
I ask something like this before but i have another problem
I made a project in Visual Studio 2010 a class library and make a COM component, now i want to call this methods from Clarion, i put the dll in the Clarion project folder but doesn''t work, Which files i have to use, how i do that?

this is the code i use in clarion but don''t do anything


WorkOpenWin                routine
   data
Interop01                  long
   code
   Interop01 = CREATE(0, CREATE:OLE)
   Interop01{PROP:Create} = 'Interop01.Interop01Class'
   Interop01{'CallDotnet("Message from Clarion")'}



thanks

解决方案



这篇关于在Clarion中使用.NET中的dll的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 01:14