Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
WCrihfield
in reply to: llorden4

That's a tough one, but I do know that the main iLogic tab is a DockableWindow, instead of a BrowserPane.  You might have to know some advanced vb.net to access deeper into it.

Here's a little bit of iLogic to access it:

 

Dim oTitle As String = "iLogic"
Dim oIntName As String = "ilogic.treeeditor"
Dim oClientID As String = "{3bdd8d79-2179-4b11-8a5a-257b1c0263ac}"
For Each oDW As Inventor.DockableWindow In ThisApplication.UserInterfaceManager.DockableWindows
	If oDW.InternalName = oIntName Then
		If Not oDW.Visible Then oDW.Visible = True
	End If
Next

 

If this solved your problem, or answered your question, please click ACCEPT SOLUTION.
Or, if this helped you, please click (LIKE or KUDOS) :thumbs_up:.

If you want and have time, I would appreciate your Vote(s) for My IDEAS :light_bulb:or you can Explore My CONTRIBUTIONS

 

Wesley Crihfield

EESignature

(Not an Autodesk Employee)