I have run across a problem that seems to have come up a few times, but all links to helpful resources in those threads are dead. I am trying to select a particular block on the active layout, however due to the failings of code 410 in VBA, I can only select the block on the first layout.
I'm using vbdPowerSet and BuildFilter as found at
Heres my code (many thanks to Todd so far) which does not include the failed 410 bits;
Does anyone have a solution to this problem?
I'm using vbdPowerSet and BuildFilter as found at
Heres my code (many thanks to Todd so far) which does not include the failed 410 bits;
Code:
' Build the filter criteria.
'
BuildFilter intData, varData, -4, "" _
' Ensure a selection set is not already in memory.
'
Set ssTitleBlock = vbdPowerSet("TITLE_BLOCK")
' Build the selection set.
'
ssTitleBlock.Select Mode:=acSelectionSetAll, FilterType:=intData, FilterData:=varData
Does anyone have a solution to this problem?