Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Load External Dll

Status
Not open for further replies.

Zoes

Mechanical
Sep 30, 2011
46
GB
Hi,

Would like to know how/if I could load an external .dll into a journal???
For example I produced a UI styler based code with an action button and a vb.net "hello class" with the intention when I hit the button a hello msg will appear..

Journal:
If block Is button0 Then
Dim s As New TryDll.Hello
End If

Class Dll:
Public Class Hello
Sub Main()
MsgBox("Hello")
End Sub
End Class

Problem: I have an error message of the "TryDll.Hello" not being defined. I have checked that I have imported the dll and also that the dll is in the folder UGII\managed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top