判断 ActiveX.EXE 是否已经在执行中

前端之家收集整理的这篇文章主要介绍了判断 ActiveX.EXE 是否已经在执行中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先需要支持GetObject(),

这在 http://topic.csdn.net/u/20080827/13/01b722a7-de68-46b8-a0c6-8d551a194e8f.html 中已经解决了。

其次,你的问题看下面就明白了
VB code
   
   
dim f as object ,bIsFirstCreate as boolean on error resume next set f = getobject (...) on error goto 0 if f is nothing then set f = createobject (...) bIsFirstCreate = True end if
原文链接:https://www.f2er.com/vb/259899.html

猜你在找的VB相关文章