04-10-2023
11:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-10-2023
11:54 PM
I agree with @WCrihfield If you need this complex references, create your own DLL file with all of them.
But because AddVbFile directive is solved at compile time, you can combine this two files from "main" rule.
Code.iLogicVb
'AddVbFile "C:\Full\Path\To\ModuleB.vb"
'AddVbFile "C:\Full\Path\To\ClassA.vb"
AddVbFile "IC_11884562\ClassA.vb"
AddVbFile "IC_11884562\ModuleB.vb"
Sub Main()
ClassA.MSGC()
End SubClassA.vb
Public Class ClassA
Public Shared Sub MSGC()
System.Windows.Forms.MessageBox.Show("Call from ClassA")
ModuleB.MSGM()
End Sub
End ClassModuleB.vb
Public Module ModuleB
Public Sub MSGM()
System.Windows.Forms.MessageBox.Show("Call from ModuleB")
End Sub
End Module
Screenshot from iLogic external rules settings