Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding row and column totals

Status
Not open for further replies.

Kebabmeister

Programmer
Apr 22, 2003
94
0
0
GB
Does anyone know how to hide row and column totals?
 
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
 
Thanks MKhanA, but I don't think this would work. I am using an Ac7 crosstab so I don't think this will help. Have you ever used the crosstab facility?

The help file suggests a properties "TotalColumnPlacement" and "TotalRowPlacement" controls display but I can't find them anywhere.
 
You did not mention that you are using crosstab. Anyway good luck in finding the solution.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top