If everthing you want to hide is contained in a frame then override the buildfromrow method of the frame and set the size.height = 0 when the value is 100.
In frame properties, click Methods tab and select BuildFromRow function by double clicking on functions name. You will see following Built-in function:
Function BuildFromRow( row As AcDataRow ) As AcBuildStatus
BuildFromRow = Super::BuildFromRow( row )
' Insert your code here
If (Col1=0 and Col2=0) Then
size.height = 0
End If
End Function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.