05-04-2023
09:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-04-2023
09:20 AM
I would think that this part of the code:
If oVisibleRows > iMostRows Then
iMostRows = oPL.PartsListRows.Count
oLongestPL = oPL
iSheetNumber = CInt(oSheet.Name.Split(":").Last)
End If
...might need to be changed so it is not using oPL.PartsListRows.Count, and using oVisibleRows in its place, but I may b wrong in the intent there.
If oVisibleRows > iMostRows Then
iMostRows = oVisibleRows
oLongestPL = oPL
iSheetNumber = CInt(oSheet.Name.Split(":").Last)
End If
Wesley Crihfield
(Not an Autodesk Employee)