This is actually two questions.
1) I have a DLL that I am trying to access with the following:
$dll = DllOpen("C:\Visual Studio Solutions\Windows\SampleDLL\bin\SampleDLL.dll")
$result = DllCall($dll, "str", "Class1.Test")
The DLL is one I wrote in VB.NET. Is this even possible? All the examples I see are accessing windows DLL's making API calls.
Second, Can I access dlls compiled by AutoIt3 with a Visual Basic.NET project?
Thanks in advance