OpenRoads Sheet Index can not find sheet

Hi, all

does anyone know why the sheet does not show up when trying to add sheet into existing sheet index? it only goes to the dgn file and does not show the sheet in it, so can not add the sheet into sheet index.

Thanks in advance

Parents
  • Hi Kevin and Amita,

    Any solution or suggestion to this problem. I am having the same issue. I am using  OpenRoads Designer Connect Edition - 2020 Release 2 Update 8 - 10.08.01.33.

    Thanks,

    Matt

  • Matt,

    I was able to figure out a solution that fixed the problem for me. I had to open each drawing that had the issue and do the following:

    1 - From the Home tab, Primary group, open the Models dialog.

    2 - Select the Sheet Model that is giving you trouble.

    3 -  Right click and select Remove from Sheet Index.

    4 - Now try adding the Sheet Model to the Sheet Index.

    I hope this helps!

    Todd

  • Thanks Todd. That resolved my problem. To make it easier to process a group of sheets, I created a small VBA macro to use via batch processing.

    Public Sub Main()
    Dim mdl As ModelReference
    Dim str As String

    For Each mdl In ActiveDesignFile.Models
    If mdl.Type = msdModelTypeSheet Then
    mdl.Activate
    str = "sheet removefromsheetindex " & Chr(34) & mdl.Name & Chr(34)
    CadInputQueue.SendKeyin str
    SaveSettings
    End If
    Next
    End Sub

    Bigger-picture wise, and this is just my opinion, but I don't see too much value with Sheet Index. It seems pretty clunky, or at least in its present state. For example, I don't easily see a way to add reference to the sheet numbers associated with the previous and next sheet in a plan set. Often times these page reference numbers are included with the match lines at the left and right side of the sheet. In theory, the sheet index already knows what these page number values are. Why not have a sheet model parameter for "previous sheet in index" and "next sheet in index". These would be useful. Perhaps they could be added as a future enhancement.

  • I use the Sheet Model properties to do that, in coordination with Project Explorer and Link sets. CONNECT may have a better way of such things, but using sheet model numbers with links and text fields has gotten me somewhere.

    MaryB

    Power GeoPak 08.11.09.918
    Power InRoads 08.11.09.918
    OpenRoads Designer 2021 R2

        

Reply Children
No Data