Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng 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
Joined
Sep 30, 2011
Messages
46
Location
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