I have a old version of RSA and there is some issue with tables creation by API and View Manager that is responsible for those tabs.
Set RobApp = New RobotApplication
' Create Node Table
Dim rt As IRobotTable
Set rt = RobApp.Project.ViewMngr.CreateTable(I_TT_NODES, I_TDT_NODE)
rt.Select I_ST_NODE, "all"
' check wich columns do you need
rt.AddColumn (0)
rt.AddColumn (1)
rt.AddColumn (2)
rt.Window.State = I_WS_NORMAL
rt.Visible = True
rt.UserControl = True
Set rt = RobApp.Project.ViewMngr.CreateTable(I_TT_BARS, I_TDT_BAR)
rt.Select I_ST_BAR, "all"
' check wich columns do you need
rt.AddColumn (10)
rt.AddColumn (11)
rt.AddColumn (12)
rt.Window.State = I_WS_NORMAL
rt.Visible = True
rt.UserControl = True
Set RobApp = Nothing
After running this code, if you go to window menu and choose cascade you can see the tables are open but don't appear on those tabs.
Maybe someone can give more insights in this problem or even have a solution.
Regards