Is it only me? Problem with size of panels

Is it only me? Problem with size of panels

tomas_wiklund
Contributor Contributor
432 Views
4 Replies
Message 1 of 5

Is it only me? Problem with size of panels

tomas_wiklund
Contributor
Contributor

I have som problem with placement and size of the panels in Autodesk Inventor (2023).
When I restart the placement of the panels are different from when I closed Inventor.

The sizes of the Model Browser often changes.
The most irritating problem is my Vault panel as seen in my attached movie.

Grab some popcorn and watch my latest production.

0 Likes
Accepted solutions (1)
433 Views
4 Replies
Replies (4)
Message 2 of 5

Anonymous
Not applicable

What happens to these if you were to locate them in the left browser panel with the model tree?

If and when you select the appropriate tab in the browser, do they still resize?

Or even if you undock them and move them to another screen, etc.

 

 

Message 3 of 5

Frederick_Law
Mentor
Mentor

Left browser is more stable.

I have Vault there.

Right side is iLogic and ilogic log which doesn't open when IV start.

If you have another IV session open, good luck.  Everything will go crazy.

 

iLogic can set panel width.

It can set other but not consistent.

 

Sub Main()
'kDockBottom	1	Dock To bottom.
'kDockLastKnown	32	Docking To the last know state.
'kDockLeft		2	Docking To left.
'kDockRight		4	Docking To right.
'kDockTop		8	Docking To top.
'kFloat 		16	floating.

Dim oDockingState As DockingStateEnum
Dim oDockToObject As Object
Dim ologgerWindow As DockableWindow
Dim otreeWindow As DockableWindow
Dim omodelWindow As DockableWindow
Dim ovaultWindow As DockableWindow

omodelWindow = ThisApplication.UserInterfaceManager.DockableWindows.Item("model")
'ovaultWindow = ThisApplication.UserInterfaceManager.DockableWindows.Item("vault")
'ovaultWindow.Visible = False
'omodelWindow.Visible = False
omodelWindow.Width = 300
'ovaultWindow.Width = 300
'omodelWindow.Height = 600
'ovaultWindow.Height = 312
'omodelWindow.Visible = True
'ovaultWindow.Visible = True

otreeWindow = ThisApplication.UserInterfaceManager.DockableWindows.Item("ilogic.treeeditor")
ologgerWindow = ThisApplication.UserInterfaceManager.DockableWindows.Item("ilogic.logwindow")

otreeWindow.GetDockingState(oDockingState, oDockToObject)
'otreeWindow.SetDockingState(kDockRight, oDockToObject)
'otreeWindow.Visible = False
'ologgerWindow.Visible = False
'otreeWindow.Height = 400
otreeWindow.Width = 230
ologgerWindow.Width = 230
'otreeWindow.Visible = True
'otreeWindow.Top = 115
'otreeWindow.Left = 1600

'ologgerWindow.SetDockingState(kDockRight, oDockToObject)
'ologgerWindow.Height = 694
'ologgerWindow.Width = 230
'ologgerWindow.Visible = True
'ologgerWindow.Top = 358
'ologgerWindow.Left = 1600
End Sub

 

 

Message 4 of 5

tomas_wiklund
Contributor
Contributor

They seems to be more sable when I place Vault-tab below Model-Panel.
The problem is that I WANT it to be to the right.
Thanks anyway!

0 Likes
Message 5 of 5

tomas_wiklund
Contributor
Contributor
Accepted solution

Thanks for your code @Frederick_Law. I solved it in another way.
I switched place of iLogic panel and Vault.
I will try this a few day.