Message 1 of 10
iLogic Visual Studio Debugging
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have been using Visual Studio to debug my iLogic for sometime now. Something changed recently or I did something that prevents Visual Studio from loading the iLogic Rule so I can step through the code. It has shown various errors with different things I have tried like the attached image. I have followed guide at the https://modthemachine.typepad.com/my_weblog/2019/12/using-visual-studio-to-debug-ilogic-rules.html
The code in the rule I am using is super basic.
Public Sub Main()
Dim oDoc As Document = ThisApplication.ActiveDocument
Throw New Exception("STOP")
End Sub