[RESOLVED] AutoIt: can it call a function from a VB6 or .Net dll?
Anyhere here who knows if AutoIt can call a function from a VB6.0 or .Net dll?
TIA
Re: AutoIt: can it call a function from a VB6 or .Net dll?
Dunno... what is AutoIt?
-tg
Re: AutoIt: can it call a function from a VB6 or .Net dll?
Its sort of a programming language, not entirely sure either. I made a com-enabled dll for a friend and someone he knows wants to make use of that dll also but in AutoIt so I am wondering how AutoIt could call function from a VB6 dll or .Net dll.
Re: AutoIt: can it call a function from a VB6 or .Net dll?
If you expose things as a COM object, you can do it. Search for COM in the AutoIt help file:
Code:
$oObject = ObjCreate("YourComObject.YourClass")
Re: AutoIt: can it call a function from a VB6 or .Net dll?
Wow, that did it! Thank you so much -0.