185
Disable chart stacking

' Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered.
function ViewChange as v ()
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	oPivot.CustomView.Object.AllowStack = .f.
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)/12"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
oPivot.CustomView.ControlID = "exontrol.graph"
oPivot.EndUpdate()

184
Can the vertical/horizontal line be hidden when the cursor hovers over the graph chart
Dim oPivot as P
Dim var_CustomView as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)/12"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
var_CustomView = oPivot.CustomView
	var_CustomView.License = "XXXXXXXX"
	var_CustomView.ControlID = "exontrol.graph"
	var_CustomView.Object.Cursor.Visible = .f.
oPivot.EndUpdate()

183
Define the column caption and row title when the PivotRows property is empty

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Template = "Description(27) = `<c>\`" // oPivot.Description(27) = "<c>\"
oPivot.Template = "Description(28) = `Total`" // oPivot.Description(28) = "Total"
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.PivotColumns = "sum(5)[content=numeric]"
oPivot.ShowBranchRows = 3
oPivot.DrawGridLines = -2
oPivot.GridLineStyle = 48
oPivot.EndUpdate()

182
Change the background color of the splitbars

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Template = "Background(141) = 15790320" // oPivot.Background(141) = 15790320
oPivot.Template = "Background(142) = 15790320" // oPivot.Background(142) = 15790320
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)/12"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
oPivot.DrawGridLines = 2
oPivot.EndUpdate()

181
Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered
' Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered.
function ViewChange as v ()
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	? oPivot.CustomView.Columns 
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.GridLineStyle = 512
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumns = "sum(5)/12"

180
Retrieves the data information about the current view, such as columns, data, ...
' Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered.
function ViewChange as v ()
	Dim var_CustomView as P
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	var_CustomView = oPivot.CustomView
		? "Columns" 
		? var_CustomView.Columns 
		? "Items" 
		? var_CustomView.Items 
		? "Categories" 
		? var_CustomView.Categories 
		? "Series" 
		? var_CustomView.Series 
		? "Data" 
		? var_CustomView.Data 
end function

Dim oPivot as P
Dim var_CustomView as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
var_CustomView = oPivot.CustomView
oPivot.EndUpdate()

179
Access the custom-view
Dim oPivot as P
Dim var_CustomView as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
var_CustomView = oPivot.CustomView
	var_CustomView.ControlID = "exontrol.graph"
	var_CustomView.Object.ForeColor = 8421504
oPivot.EndUpdate()

178
Switch between custom view and table mode
' Occurs whenever the custom view fires an event.
function OleEvent as v (Ev  as  OLE::Exontrol.Pivot.1::IOleEvent)
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	oPivot.CustomView.Visible = .f.
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
oPivot.CustomView.ControlID = "exontrol.graph"
oPivot.EndUpdate()

177
'exontrol.graph' component creation failed

Dim oPivot as P
Dim var_CustomView as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)/12"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
var_CustomView = oPivot.CustomView
	var_CustomView.License = "XXXXXXXX"
	var_CustomView.ControlID = "exontrol.graph"
oPivot.EndUpdate()

176
How can I change the graphical/chart representation of my data

Dim oPivot as P
Dim var_CustomView as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)/12"
oPivot.ShowBranchRows = 3
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
var_CustomView = oPivot.CustomView
	var_CustomView.ControlID = "exontrol.graph"
	var_CustomView.Object.SerieType = "line"
oPivot.EndUpdate()

175
Organizes the layout into distinct sections: one for pivot rows, one for pivot columns, and a separate area for defining aggregates

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.ShowBranchRows = 3
oPivot.PivotRows = "0"
oPivot.PivotBarVisible = 553652187 'exPivotBarSingleAggregate + exPivotBarDefault
oPivot.ShowDataOnDblClick = .t.
oPivot.EndUpdate()

174
How can I provide a graphical/chart representation of my data

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.CustomView.ControlID = "exontrol.graph"
oPivot.EndUpdate()

173
Rename the Total caption
Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotTotals = "/sum[bold]"
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.FormatPivotTotal = "( iaggregate = 5 ? (ilevel = 0 ? 'Overall amount' : 'Sectional sum') : caggregate )"
oPivot.EndUpdate()

172
Specify the size of the Columns panel

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarRect = ",,96"
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.EndUpdate()

171
Show a vertical line between pivot and Columns panel (EBN color)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABRsIQAAYAQGKIYBkAKBQAGaAoDDUNQxQwAAxwfBMKgBBCLIxhEYobgmGIXRpFICQTIcBhaGIZRiAKCRTDmHwyRCNIwCLD8QxtDqBY4gOZZXhal4cJTgMaBYi+Pw3DZHcbvBRkewzHQAKgnSjoDhEMg1CTVVYTDKdOSzDyEX7sIAACpOIZQVJVEY1VT8cyxIyEZimSypWqiYJ0Ty6cQwTAIgI")
oPivot.Template = "Background(87) = 16777216" // oPivot.Background(87) = 16777216
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.EndUpdate()

170
Change the background of the Columns panel (EBN color)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABNoCg6AADACAxRDAMgBQKAAzQFAYahqGKGAAGOD4JhUAIIRZGMIjFDcEwxC6NIpAWLoJDCH4mSTHYxgJIMWwzDiBZgkCA4fiGEYnThCIxzTJ0aw1CKbYRAKCUKoUAJFsSnQAJIgOO4lULPMIhDDQKQTIKBahoehqIhaEQyDSJNb2DCIahhMSEbKtCooDhGFZUWzLVxTJJNawHJqJJDuOTpSjKH4+RjWFKUXR9b4BJSNAgqeCQTiSWZEVxRUS0XbGCyZLSQY7uAAMKgOVoDYzdGLwHTtOwrMa1QAsDSbKqWZ5uRpHcQ5aAGN5DPbMbqwOaqLznAaLQLtG4RTikVRPTDYaj437+OaHGyNbI6HTNPpTlWDJWjYXI8l8C4fg6GYAAEEISgGJJGHQOocgyIwYnqKhYAAIQTH2MYRjQJBRAmZptmEAYIjGU5dk8UgOFgBJUgCTQIBYBoBmCCAmAqApghgDJUDmYQFCCZoEk2OBUm+BZPCgZgagaYZIHYHoHmGWBcm8NwiEiFJVgmYgji4Kg6GKSI2C6C5jAiRgygwIojiycINkyeJmAYPJjkiTg+g+ZAIkCdIQkyWQWDuDxkBkJhKguZAzlIRQzGQc5ODWFJlEkVhWhWZYJFYTYTmUE4yF6F5mAmBhihiZhJhYX4WmQaAUnWGpOlmNhuhuZwJkYcocmcSY4naHZlkmKhrDuJ5JnYfofmgCgGgKIJnlmXJ2h4TQKBosRokoNoOiOaQKDSd4kmiChMncPBpgoZoaiaaZKHaHonmmE5iiKJRpDicomimaoKiaKoqmqSoeiIPgogqPotiyaxKlYPA+GuCqbBMa5KnaPovmwCwGj6LgP24RIhiyCwmkqMpsksNpKD6LQLBqOIzi0SxWlaHZtAOahPssM5Wi+IYtlsXpijKbZ5lyTo5mAE4UlqOpjHOQpEjubyanKPJvEuNgVj2TY1CCao+k2G52AyP5wAwBp9DYZZ1CCaxsAABAEICA")
oPivot.Template = "Background(87) = 16777216" // oPivot.Background(87) = 16777216
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.EndUpdate()

169
Change the background of the Columns panel (solid color)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.Template = "Background(87) = 15790320" // oPivot.Background(87) = 15790320
oPivot.EndUpdate()

168
Change the visual appearance of the Columns panel

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABNoCg6AADACAxRDAMgBQKAAzQFAYahqGKGAAGOD4JhUAIIRZGMIjFDcEwxC6NIpAWLoJDCH4mSTHYxgJIMWwzDiBZgkCA4fiGEYnThCIxzTJ0aw1CKbYRAKCUKoUAJFsSnQAJIgOO4lULPMIhDDQKQTIKBahoehqIhaEQyDSJNb2DCIahhMSEbKtCooDhGFZUWzLVxTJJNawHJqJJDuOTpSjKH4+RjWFKUXR9b4BJSNAgqeCQTiSWZEVxRUS0XbGCyZLSQY7uAAMKgOVoDYzdGLwHTtOwrMa1QAsDSbKqWZ5uRpHcQ5aAGN5DPbMbqwOaqLznAaLQLtG4RTikVRPTDYaj437+OaHGyNbI6HTNPpTlWDJWjYXI8l8C4fg6GYAAEEISgGJJGHQOocgyIwYnqKhYAAIQTH2MYRjQJBRAmZptmEAYIjGU5dk8UgOFgBJUgCTQIBYBoBmCCAmAqApghgDJUDmYQFCCZoEk2OBUm+BZPCgZgagaYZIHYHoHmGWBcm8NwiEiFJVgmYgji4Kg6GKSI2C6C5jAiRgygwIojiycINkyeJmAYPJjkiTg+g+ZAIkCdIQkyWQWDuDxkBkJhKguZAzlIRQzGQc5ODWFJlEkVhWhWZYJFYTYTmUE4yF6F5mAmBhihiZhJhYX4WmQaAUnWGpOlmNhuhuZwJkYcocmcSY4naHZlkmKhrDuJ5JnYfofmgCgGgKIJnlmXJ2h4TQKBosRokoNoOiOaQKDSd4kmiChMncPBpgoZoaiaaZKHaHonmmE5iiKJRpDicomimaoKiaKoqmqSoeiIPgogqPotiyaxKlYPA+GuCqbBMa5KnaPovmwCwGj6LgP24RIhiyCwmkqMpsksNpKD6LQLBqOIzi0SxWlaHZtAOahPssM5Wi+IYtlsXpijKbZ5lyTo5mAE4UlqOpjHOQpEjubyanKPJvEuNgVj2TY1CCao+k2G52AyP5wAwBp9DYZZ1CCaxsAABAEICA")
oPivot.Template = "Background(92) = 16777216" // oPivot.Background(92) = 16777216
oPivot.Template = "Background(93) = 16185078" // oPivot.Background(93) = 16185078
oPivot.BackColorHeader = 16777216
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.EndUpdate()

167
Display the columns that users can group by or use for aggregate functions (child)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarVisible = 32
oPivot.EndUpdate()

166
Display the columns that users can group by or use for aggregate functions (float)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderHeight = 24
oPivot.HeaderAppearance = 4
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotColumnsFloatBarVisible = -1
oPivot.EndUpdate()

165
ShowIdem {string}, specifies the symbol used to indicate repeated captions, offering a clear visual cue for identical entries. This property is effective only when the showBranchRows property is set to exBranchColumns mode

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0[bold],2"
oPivot.PivotColumns = "sum(5)[content=currency],sum(5)[content=currency]/12:A"
oPivot.PivotTotals = "/sum[bold,content=currency]"
oPivot.ShowBranchRows = 3
oPivot.ShowIdem = "<fgcolor lightgray>〃"
oPivot.EndUpdate()

164
exBranchColumns + exBranchIncludeAggregate + exBranchRowDivider

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0[bold],2"
oPivot.PivotColumns = "sum(5)[content=currency],sum(5)[content=currency]/12:A"
oPivot.PivotTotals = "/sum[bold,content=currency]"
oPivot.ShowBranchRows = 51 'exBranchIncludeAggregate + exBranchRowDivider + exBranchColumns
oPivot.EndUpdate()

163
exBranchColumns + exBranchIncludeAggregate

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0[bold],2"
oPivot.PivotColumns = "sum(5)[content=currency],sum(5)[content=currency]/12:A"
oPivot.PivotTotals = "/sum[bold,content=currency]"
oPivot.ShowBranchRows = 35 'exBranchIncludeAggregate + exBranchColumns
oPivot.EndUpdate()

162
exBranchColumns

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0[bold],2"
oPivot.PivotColumns = "sum(5)[content=currency],sum(5)[content=currency]/12:A"
oPivot.PivotTotals = "/sum[bold,content=currency]"
oPivot.ShowBranchRows = 3
oPivot.EndUpdate()

161
Displays a glitch funnel for drop-down filter buttons (empty or active)

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
var_Appearance = oPivot.VisualAppearance
	var_Appearance.RenderType = -1
	var_Appearance.Add(1,"gBFLBCJwBAEHhEJAAEhABa8IQAAYAQGKIYBkAKBQAGaAoDDUNQxQwAAxwfBMKgBBCLIxhEYobgmGIXRpFMbxCKQahLEiTIhGUYJHgmK4tRiAUgxVDkBxrECZYqjcBZOiwLQ2TxDM7DNKUCBnIoABhGOaYDh+IQNQjUFKwTRFGRxK4EIRKAyTDLQdRyGSMMbjdQpBCbMiMRqhESKRq2UwYRYCFS1NalaztO6BUAvK67YrWez/YBfF+SfwGeqDYReWAPfgWERnQrGMLxbD8KwZAKTRjkGJ4XhuB41TbQMqufL9ByXHKSSDpGjaXjeO5VVjYNAvS69UzXNq3bhtQAOXCMEwCgI=")
	var_Appearance.Add(2,"CP:1 -2 0 0 0")
oPivot.HeaderHeight = 28
oPivot.Template = "Background(0) = 33554432" // oPivot.Background(0) = 33554432
oPivot.Template = "Background(41) = 33554433" // oPivot.Background(41) = 33554433
oPivot.Template = "Background(32) = -1" // oPivot.Background(32) = -1
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 2583 'exFilterBarCompact + exFilterBarShowCloseIfRequired + exFilterBarSingleLine + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

160
Can I use a control to generate the data and another to import data (sample 2)
Dim d as 
Dim oPivot as P
Dim var_Pivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
var_Pivot = OLE.Create("Exontrol.Pivot")
	var_Pivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
	var_Pivot.PivotRows = "0"
	var_Pivot.PivotColumns = "sum(5)[caption=<fgcolor red><b>Total]"
	d = var_Pivot.Export()
oPivot.Import(d)

159
Can I use a control to generate the data and another to import data (sample 1)

Dim d as 
Dim oPivot as P
Dim rs as P
Dim var_Fields as P
Dim var_Pivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
var_Pivot = OLE.Create("Exontrol.Pivot")
	rs = OLE.Create("ADODB.Recordset")
		var_Fields = rs.Fields
			var_Fields.Append("Code",8)
			var_Fields.Append("Customer",8)
			var_Fields.Append("Sales",5)
		rs.Open()
		rs.AddNew()
		rs.Fields.Item("Code").Value = "M"
		rs.Fields.Item("Customer").Value = "Jhon Doe"
		rs.Fields.Item("Sales").Value = 1234
		rs.Update()
		rs.AddNew()
		rs.Fields.Item("Code").Value = "M"
		rs.Fields.Item("Customer").Value = "Jhon Doe"
		rs.Fields.Item("Sales").Value = 4567
		rs.Update()
		rs.AddNew()
		rs.Fields.Item("Code").Value = "F"
		rs.Fields.Item("Customer").Value = "Jane Doe"
		rs.Fields.Item("Sales").Value = 9876
		rs.Update()
		rs.AddNew()
		rs.Fields.Item("Code").Value = "F"
		rs.Fields.Item("Customer").Value = "Jane Doe"
		rs.Fields.Item("Sales").Value = 5432
		rs.Update()
	var_Pivot.DataSource = rs
	var_Pivot.PivotRows = "1"
	var_Pivot.PivotColumns = "sum(2)"
	d = var_Pivot.Export()
oPivot.Import(d)

158
How can I replace or add an icon at runtime

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.ImageSize = 16
oPivot.ReplaceIcon("gAAAABgYACEHgUJFEEAAWhUJCEJEEJggEhMCYEXjUbjkJQECj8gj8hAEjkshYEpk8kf8ClsulsvAExmcvf83js5nU7nkCeEcn8boMaocXosCB9Hn09pkzcEuoL/fE+OkYB0gB9YhIHrddgVcr9aktZADAD8+P8CgIA==")
oPivot.ReplaceIcon("C:\images\favicon.ico",0)
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(4,"gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHLUXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBUrGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsYYDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVmWCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVoWiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiSe41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhFCcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==")
oPivot.BackColorHeader = 80135878
oPivot.SelBackColor = 67108864
oPivot.SelForeColor = 65536
oPivot.Template = "Background(20) = SelBackColor" // oPivot.Background(20) = oPivot.SelBackColor
oPivot.Template = "Background(21) = SelForeColor" // oPivot.Background(21) = oPivot.SelForeColor
oPivot.Template = "Background(26) = BackColor" // oPivot.Background(26) = oPivot.BackColor
oPivot.Template = "Background(27) = ForeColor" // oPivot.Background(27) = oPivot.ForeColor
oPivot.Template = "Background(32) = -1" // oPivot.Background(32) = -1
oPivot.Template = "Background(0) = 67108864" // oPivot.Background(0) = 67108864
oPivot.Template = "Background(41) = 67174657" // oPivot.Background(41) = 67174657
oPivot.Template = "Background(1) = 67109119" // oPivot.Background(1) = 67109119
oPivot.HeaderAppearance = 4
oPivot.GridLineStyle = 512
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "12,0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotTotals = "/sum"
oPivot.DataColumns.item(0).FormatImage = "1"
oPivot.EndUpdate()

157
Rename the caption of a generated column

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderAppearance = 4
oPivot.HeaderHeight = 24
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5)[caption=<fgcolor red><b>Total]"
oPivot.EndUpdate()

156
Computed-columns support

Dim oPivot as P
Dim var_FormatContent as local

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderAppearance = 4
oPivot.HeaderHeight = 24
oPivot.GridLineStyle = 512
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.Template = "Background(212) = 8421504" // oPivot.Background(212) = 8421504
' oPivot.FormatContents.Add("Cptd","(%1/%2) format `` replace `.00` with ``").Visible = .f.
var_FormatContent = oPivot.FormatContents.Add("Cptd","(%1/%2) format `` replace `.00` with ``")
oPivot.TemplateDef = "dim var_FormatContent"
oPivot.TemplateDef = var_FormatContent
oPivot.Template = "var_FormatContent.Visible = False"

oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5),count(0),count(0)[content=Cptd,caption=<b>Computed(=1/2),bold]"
oPivot.EndUpdate()

155
Show the index of each (generated-)column

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderAppearance = 4
oPivot.HeaderHeight = 24
oPivot.GridLineStyle = 512
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.Template = "Background(212) = 255" // oPivot.Background(212) = 255
oPivot.EndUpdate()

154
The fine dotted lines in the control appear much thicker than the standard ones we've been using. How can we fix this

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.GridLineStyle = 512
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.EndUpdate()

153
Are there any properties to set text margins at tooltip, like Margins="5,5" (method 1). Margins is used to get some space between text and the tooltips border

' Occurs when the user moves the mouse.
function MouseMove as v (Button  as  N,Shift  as  N,X  as  OLE::Exontrol.Pivot.1::OLE_XPOS_PIXELS,Y  as  OLE::Exontrol.Pivot.1::OLE_YPOS_PIXELS)
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	oPivot.ShowToolTip("new content","",,"+8","+8")
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.ToolTipMargin = "16,8"

152
How can i set the sort order of an aggregated column with code

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0[bold]"
oPivot.PivotColumns = "sum(5)"
oPivot.DataColumns.item("Freight").SortType = 1
oPivot.Layout = "singlesort=\"C1:2\""

151
Force hover-all feature
Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.Template = "Background(500) = -1" // oPivot.Background(500) = -1
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")

150
Disable hover-all feature (Windows 11 or greater)
Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.Template = "Background(500) = 1" // oPivot.Background(500) = 1
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")

149
Display a custom tooltip
' Occurs when the user moves the mouse.
function MouseMove as v (Button  as  N,Shift  as  N,X  as  OLE::Exontrol.Pivot.1::OLE_XPOS_PIXELS,Y  as  OLE::Exontrol.Pivot.1::OLE_YPOS_PIXELS)
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	oPivot.ShowToolTip("new content","",,"+8","+8")
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")

148
Shows the tooltip of the object moved relative to its default position
' Occurs when the user moves the mouse.
function MouseMove as v (Button  as  N,Shift  as  N,X  as  OLE::Exontrol.Pivot.1::OLE_XPOS_PIXELS,Y  as  OLE::Exontrol.Pivot.1::OLE_YPOS_PIXELS)
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	oPivot.ShowToolTip("<null>","<null>",,"+8","+8")
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")

147
ADOR, MDB (JET)

Dim oPivot as P
Dim rs as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
rs = OLE.Create("ADOR.Recordset")
	rs.Open("Data","Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\Exontrol\ExPivot\Sample\Access\sample.mdb",3,3)
oPivot.DataSource = rs

146
ImageSize property on 32 (specifies the size of control' icons/images/check-boxes/radio-buttons)

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.ImageSize = 32
oPivot.DefaultItemHeight = 36
oPivot.HeaderHeight = oPivot.DefaultItemHeight
oPivot.Font.Size = 16
oPivot.FilterBarFont.Size = oPivot.Font.Size
oPivot.ToolTipFont.Size = oPivot.Font.Size
oPivot.Indent = 26
oPivot.Images("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")
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(1,"gBFLBCJwBAEHhEJAAEhABfICg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EMRwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsOatVqjG5sYjcGC3La9cz3Pq/bpuDCbMxuaK1TrYXr1TTrcofBDldAxXRKDxRDWVhLnYOw9i6XxzjuXprCaOoKB6EwbiCZZCGOdZYlcT4xHmbhMnwNxtn+G5bmqdZ7n4Pw/i+X5zm+dQ9g4CAFjsfAJheOI8HsDoWDWTB/lwSAQkmA5PEgRYoDyDwYFYFoFmGCBmBqBphDgRJ0gOTIYBGRB/lyRh0iSCZbjYWJzgWDwIjYLoLmMCJGDKDJjBgWgqG6YhyhGHRzA2aJ1mCABOAiOJvhCZBJBYRoRmSCQmEqEQimkAZgg8TZnDCV4UkmCUmBKZYJGYWoWCUUhiFMNZckNUh2GENoaGaGZmgmJhqhqZpGGIEx2GYIxSGGGJdggWJth2Z4JmYeoemeSZ2H6H4hGmQhihyTRHGYLg7CiCgmgqIpokoNoOiOaJ4jqAochqaZGgaCxpAoZoaiaaJqEmWIcGgShcnCJwqEqFoR3YOoFlgchflqNouiuawHmWSYqGkWZQhcatzmaOoumuSp2j6L5bBaKo0GQKRnGGCxqiyCwmkqMpsksNpOGUGI7A0ew1G0Rxlg0PptgsZuDG2Sx2l6N5tnYNZZjUDRXDCVo5l2FoymqOpukuNpujubwLjmWY5k0ZwxkaFxYlWdp6j6b5Lnafo/nABQdg2FxcUsY5BkmXAkmeQpckwNRrkKTh8CSHZBk4NwyC4KxxgMDwakOMZDn8GgwnGAo2C4cwthMcwmCcMoHBMHRehwTIghySYNksZwcH4HBMEsHx5hyPItiweYxnwSZEH4Mozn0fR+DMAo7EYJ50gkdZelKdNql2UgJn0GIukwH4HicQRai2GI4mSVpNl0dZGledgNgcYpYDWUx3FsOQi5YV5anaTY3G6W53A2RxylydxFjiaxEFCCgBBAQ==")
	var_Appearance.Add(2,"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")
	var_Appearance.Add(3,"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")
	var_Appearance.Add(4,"gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHLUXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBUrGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsYYDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVmWCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVoWiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiSe41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhFCcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==")
oPivot.BackColorHeader = 80135878
oPivot.SelBackColor = 67108864
oPivot.SelForeColor = 65536
oPivot.Template = "CheckImage(0) = 16777216" // oPivot.CheckImage(0) = 16777216
oPivot.Template = "CheckImage(1) = 33554432" // oPivot.CheckImage(1) = 33554432
oPivot.Template = "CheckImage(2) = 50331648" // oPivot.CheckImage(2) = 50331648
oPivot.Template = "Background(20) = SelBackColor" // oPivot.Background(20) = oPivot.SelBackColor
oPivot.Template = "Background(21) = SelForeColor" // oPivot.Background(21) = oPivot.SelForeColor
oPivot.Template = "Background(26) = BackColor" // oPivot.Background(26) = oPivot.BackColor
oPivot.Template = "Background(27) = ForeColor" // oPivot.Background(27) = oPivot.ForeColor
oPivot.Template = "Background(32) = -1" // oPivot.Background(32) = -1
oPivot.Template = "Background(0) = 67108864" // oPivot.Background(0) = 67108864
oPivot.Template = "Background(41) = 67174657" // oPivot.Background(41) = 67174657
oPivot.Template = "Background(1) = 67109119" // oPivot.Background(1) = 67109119
oPivot.HeaderAppearance = 4
oPivot.GridLineStyle = 512
oPivot.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "12,0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotTotals = "/sum"
oPivot.DataColumns.item(0).FormatImage = "value case (default: -1;'Germany': 1;'USA': 2;'Mexico': 3)"
oPivot.EndUpdate()

145
ImageSize property on 16 (default) (specifies the size of control' icons/images/check-boxes/radio-buttons)

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.ImageSize = 16
oPivot.Images("gBJJgBAIDAAEg4ACEKAD/hz/EMNh8TIRNGwAjEZAEXjAojJAjMLjABAAgjUYkUnlUrlktl0vmExmUzmk1m03nE5nU7nkrQCAntBoVDolFo1HoM/ADAplLptImdMYFOqdSqlXq1QrVbrlGpVWsFNrNdnNjsk7pQAtNroFnt0sh8Yr9iulTuNxs1Eu8OiT/vsnsNVutXlk/oGGtVKxGLxWNtsZtN8iUYuNvy0Zvd+xNYwdwvl4p870GCqc8vOeuVttmp1knyOayWVy+WzN/ze1wOElenm+12WUz/Bv2/3UyyWrzeutux2GSyGP2dQ33C1ur3GD3M4zUNzHdlWjq/E3nGzVpjWv4HA7fRy/Tv2IrN8rPW6nZ3ve7mUlfu20Z8acvQyb+vY9jasYoDwMm+LytVBDqKG3z8O3Cb8P+mkAuY9cCQ2uL4KaxDKvkp8RNLEjqugnrwQo/UWPzFyeQw5sNLZFENrI4kOqU66pw8uzmOKvTqNqjULJvGL1JO48GtTGsbLdEL3scxLlyiw8dQeoUVxdLTtyKmUjwGlslRPJsnK1HbAKbKCrsQo8uQk/CeP44iaR/ATnTNPLvyxPU+z9P9AUDQVBowiofJXQ6Oo+kKMpIkjztE4TKn4P6JowfgPnwD5/nAjB8AOeAPo0eAA1IAFH07UhAIMpYAVIYFHqBUhwVjV1S1EtQAHxW65V0AZwAeuQAnwB5gAPYViEDVhwAHTQBkCjB4gOhwDmCyhH0sACAg==")
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(4,"gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHLUXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBUrGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsYYDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVmWCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVoWiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiSe41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhFCcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==")
oPivot.BackColorHeader = 80135878
oPivot.SelBackColor = 67108864
oPivot.SelForeColor = 65536
oPivot.Template = "Background(20) = SelBackColor" // oPivot.Background(20) = oPivot.SelBackColor
oPivot.Template = "Background(21) = SelForeColor" // oPivot.Background(21) = oPivot.SelForeColor
oPivot.Template = "Background(26) = BackColor" // oPivot.Background(26) = oPivot.BackColor
oPivot.Template = "Background(27) = ForeColor" // oPivot.Background(27) = oPivot.ForeColor
oPivot.Template = "Background(32) = -1" // oPivot.Background(32) = -1
oPivot.Template = "Background(0) = 67108864" // oPivot.Background(0) = 67108864
oPivot.Template = "Background(41) = 67174657" // oPivot.Background(41) = 67174657
oPivot.Template = "Background(1) = 67109119" // oPivot.Background(1) = 67109119
oPivot.HeaderAppearance = 4
oPivot.GridLineStyle = 512
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "12,0"
oPivot.PivotColumns = "sum(5)"
oPivot.PivotTotals = "/sum"
oPivot.DataColumns.item(0).FormatImage = "value case (default: -1;'Germany': 1;'USA': 2;'Mexico': 3)"
oPivot.EndUpdate()

144
Is it possible to view all events the control fires
' Notifies the application once the control fires an event.
function Event as v (EventID  as  N)
	oPivot = topparent:CONTROL_ACTIVEX1.activex
	? oPivot.EventParam(-2) 
end function

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotBarVisible = 16780763 'exPivotBarAllowFormatConditionalAppearance + exPivotBarAllowResizeColumns + exPivotBarAllowUndoRedo + exPivotBarAllowFormatContent + exPivotBarAllowFormatAppearance + exPivotBarAllowValues + exPivotBarShowTotals + exPivotBarAutoFit + exPivotBarSizable + exPivotBarVisible
oPivot.EndUpdate()

143
Does your control support images

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.DataColumns.item(0).FormatImage = "value case (default: -1;'Germany': 1;'USA': 2;'Mexico': 3)"
oPivot.EndUpdate()

142
Is it possible to rename the generated-columns

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderAppearance = 4
oPivot.HeaderHeight = 24
oPivot.Import("Item;1;2;3#A;10;20;30#A;20;40;50#A;20;30;20#B;10;10;10#B;20;50;30","str=`'` eor='#' eof=';' hdr=1")
oPivot.PivotRows = 0
oPivot.PivotColumns = "sum(1),sum(2),sum(3)"
oPivot.FormatPivotHeader = "(iaggregate ? (proper(aggregate) + ` <off -4>` + (caption case (default:`None`; 1:`Sunday`; 2:`Monday`; 3:`Tuesday`; 4:`Wednesday`; 5:`Thursday`; 6:`Friday`; 7:`Saturday`))  + `</b>`) : caption)"
oPivot.EndUpdate()

141
Is it possible to rename the columns

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.AppendData("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.DataColumns.item(0).Caption = "<b>Nation"
oPivot.Refresh()
oPivot.EndUpdate()

140
The pivot's rows and columns arer lost once I call the AppendData. Can I add/append data in the background so the layout of the pivot is not lost

Dim oPivot as P
Dim s as 

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.AppendData("Def")
oPivot.AppendData("A")
oPivot.AppendData("A")
oPivot.AppendData("A")
oPivot.PivotRows = 0
oPivot.PivotColumns = "count(0)"
s = oPivot.Layout
oPivot.AppendData("B")
oPivot.AppendData("B")
oPivot.Layout = s
oPivot.EndUpdate()

139
Is it possible to add data without clearing the previously data

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.AppendData("Column")
oPivot.AppendData("1")
oPivot.AppendData("2")
oPivot.AppendData("3")
oPivot.EndUpdate()

138
How can I change the visual appearance of the Total button

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(2,"gBFLBCJwBAEHhEJAAEhABAoCg6AADACAxRDgMQBQKAAzQFAcDBvBgABoGEZIJhUAIIRZGMIjFDcEwxC6NIpjeIBSDUJYkSZEAyjBI8ExXFqMQCkGKocgONYgQLHcgxeA0XRYFoYRinWA5PoAMoyTYMdIAnTOM4eU6AATwTSccw0fisAAfeq4Wh+HwIQiUBomGahajkMqDYRVagyCI2a4ZDZCIoVJalLAxCw8KDqGJnMr1R5/MDgOBYogXBqHYhiOAsdhjSYdBK/WLeHI6Y1GS7MMxzLK8cxVaqfMpoMI4FjuS5NU7TMC0PAXdy3LqvbBsOxbHqma5nVSBcC2ba9cz3PK4ABuW7bM6TRKNYbkOA4LiNQaxVSrNKmIwPI5DJ5Ml2co1h0d5vBWDJQEkCI7mIJpykyTZblqdhYDyR5TlmX5RBgeI+D4BxLDkO5nlieh5g2FQ5DOZAiDkDASAmYh7l0RxZncPxfhadZkBmH5jvKLhamMcItBYXgoC4B4CBgFoskEP4hkgdgegcD4zlycA1goAJ5mIc4KjgfJ+D0ToTFGbx4h8Qh2CqDJjEeJg0gyT4DkCYg5kyAhCDeBxjkIQgDHSIgTkIP4NGGFplgGEZkkifhFgSIRHgCXwtAYeQ2B+DYlGkZgqgsIpnEoJxzmWGRiFqGJhmkBhDAwJBZDIYoZCYSQ+BOFAmBkJZBhKZpJlYHIXCYR4lFuHpnkmdh+h+aAKAaAogF6FhWgOIZogoJh/GuHoTl6DojmkChGhKJJpEoVoWiUHAGDCTg6CmSheh6J5qAoTJriiWQUCSb4ploEwpgq4BKjWBomhmc4pAkOpRAQJQBICA==")
	var_Appearance.Add(1,"CP:2 -10 -6 8 8")
oPivot.Template = "Background(185) = 16777216" // oPivot.Background(185) = 16777216
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.EndUpdate()

137
Is it possible to highlight the column's header once a filter is applied

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(2,"gBFLBCJwBAEHhEJAAEhABX8GACAADACAxSDEMQBQKAAzQFAYbhgHCGAAGQaBUgmFgAQhFcZQSKUOQTDKNYykCIRSDUJYkSZEIyjBI8ExXFqNACkGKwYgmNYiTLAcgANJ0WBaGIZJ4gOT5fDKMoEDRRYADFCscwxJybQAqGQKKb+VgAVY/cTyBIAEQSKA0TDOQ5TSKWB4JPZQRBEbZMNBtBIUJquKaqShdQJCU5FdY3Xblez9P7AMBwLFEC4NQ8YNYuPhjR4dRTIMhvVAsUArFh8Zg9GZZFjmDIDT4ydBLTQwcyVIKnP5qOa6XbmPoCQDYKxZHYxPzVDa3axuL76dqCAT7XrXNy1TbNRrzQKfcJqfCbdw2YaDZLOOT3fjuI4hhKaRzFAHJ+jYQ4xHuY4gHuGIXGeExqC8Tp6C+PoEm+G5ImycRgh0XwvDGa5rgOeoejyXwnFeQp2mkf5ClgBB9gCWIYAwfYAEKV58mkdwOggNArgOXY2EWLoDkKOA0mgbhOGgZApgaSBIHWSYHSmbApgYThmESZYJkIeIkgeCpfliLIHgpMIcmUYYYmODAlg2SI4mWfRfGOEguDcCRjFYAJihCQhJBSDoRmONgKEcI4kFCEJhhOVYTmYnAlEAQhWBMJYJGYWoWmWSR2F6F5lnkWAQhUAgpEieRWEuSYkjWGpmkmNhuhuZwJkYcocmaaYkjyEhngnUA6lEFAlAEgI=")
	var_Appearance.Add(1,"CP:2 -8 -4 2 4")
oPivot.HeaderHeight = 28
oPivot.Template = "Background(0) = 33488638" // oPivot.Background(0) = 33488638
oPivot.Template = "Background(41) = 16843009" // oPivot.Background(41) = 16843009
oPivot.Template = "Background(32) = -1" // oPivot.Background(32) = -1
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 2583 'exFilterBarCompact + exFilterBarShowCloseIfRequired + exFilterBarSingleLine + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

136
How can I change the format the column displays (for instance, displaying no 0:00:00)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FormatContents.Add("notime","value replace `0:00:00` with ``")
oPivot.PivotRows = "9[content=notime]"
oPivot.EndUpdate()

135
Is it possible to show the filterbar on top of the rows

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarPromptVisible = 8705 'exFilterBarTop + exFilterBarShowCloseIfRequired + exFilterBarPromptVisible
oPivot.EndUpdate()

134
How can I uses the control in window-less mode (with no user interface, option 3)

Dim oPivot as P
Dim var_Pivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
var_Pivot = OLE.Create("Exontrol.Pivot")
	var_Pivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
	var_Pivot.PivotRows = "0"
	var_Pivot.PivotColumns = "avg(5)"
	? var_Pivot.Export() 

133
How can I uses the control in window-less mode (with no user interface, option 2)

Dim oPivot as P
Dim rs as P
Dim var_Pivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
var_Pivot = OLE.Create("Exontrol.Pivot")
	rs = OLE.Create("ADOR.Recordset")
		rs.Open("Data","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExPivot\Sample\Access\sample.accdb",3,3)
	var_Pivot.DataSource = rs
	var_Pivot.PivotRows = "0"
	var_Pivot.PivotColumns = "max(5)"
	? var_Pivot.Export() 

132
How can I uses the control in window-less mode (with no user interface, option 1)

Dim oPivot as P
Dim var_Pivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
var_Pivot = OLE.Create("Exontrol.Pivot")
	var_Pivot.LoadXML("http://www.exontrol.net/testing.xml")
	var_Pivot.PivotRows = "1"
	var_Pivot.PivotColumns = "max(6)"
	? var_Pivot.Export() 

131
How can I connect to a DBF file

Dim oPivot as P
Dim rs as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
rs = OLE.Create("ADODB.Recordset")
	rs.Open("Select * From foxcode.DBF","Provider=vfpoledb;Data Source=C:\Program Files\Microsoft Visual FoxPro 9\",3,3)
oPivot.DataSource = rs
oPivot.PivotRows = "0"
oPivot.PivotColumns = "count(0)[content=numeric],avg(7)[negative,content=numeric]"
oPivot.EndUpdate()

130
Export Data in HTML format

Dim oPivot as P
Dim var_FormatAppearance as local
Dim var_FormatAppearance1 as local
Dim var_FormatAppearance2 as local
Dim var_FormatAppearance3 as local
Dim var_FormatAppearance4 as local
Dim var_FormatAppearance5 as local
Dim var_FormatAppearance6 as local
Dim var_FormatAppearance7 as local
Dim var_FormatAppearances as P
Dim var_FormatConditionalAppearance as local
Dim var_FormatConditionalAppearance1 as local
Dim var_FormatConditionalAppearance2 as local
Dim var_FormatConditionalAppearances as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 2583 'exFilterBarCompact + exFilterBarShowCloseIfRequired + exFilterBarSingleLine + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
var_FormatConditionalAppearances = oPivot.FormatConditionalAppearances
	' var_FormatConditionalAppearances.Add("G1000","> 1000","value > 1000").ForeColor = 16711680
	var_FormatConditionalAppearance = var_FormatConditionalAppearances.Add("G1000","> 1000","value > 1000")
	oPivot.TemplateDef = "dim var_FormatConditionalAppearance"
	oPivot.TemplateDef = var_FormatConditionalAppearance
	oPivot.Template = "var_FormatConditionalAppearance.ForeColor = 16711680"

	' var_FormatConditionalAppearances.Add("L1000","< 1000","value < 1000").ForeColor = 255
	var_FormatConditionalAppearance1 = var_FormatConditionalAppearances.Add("L1000","< 1000","value < 1000")
	oPivot.TemplateDef = "dim var_FormatConditionalAppearance1"
	oPivot.TemplateDef = var_FormatConditionalAppearance1
	oPivot.Template = "var_FormatConditionalAppearance1.ForeColor = 255"

	' var_FormatConditionalAppearances.Add("Zero","zero","value = 0").BackColor = 14737632
	var_FormatConditionalAppearance2 = var_FormatConditionalAppearances.Add("Zero","zero","value = 0")
	oPivot.TemplateDef = "dim var_FormatConditionalAppearance2"
	oPivot.TemplateDef = var_FormatConditionalAppearance2
	oPivot.Template = "var_FormatConditionalAppearance2.BackColor = 14737632"

var_FormatAppearances = oPivot.FormatAppearances
	' var_FormatAppearances.Add("grayed").ForeColor = 8421504
	var_FormatAppearance = var_FormatAppearances.Add("grayed")
	oPivot.TemplateDef = "dim var_FormatAppearance"
	oPivot.TemplateDef = var_FormatAppearance
	oPivot.Template = "var_FormatAppearance.ForeColor = 8421504"

	' var_FormatAppearances.Add("red").ForeColor = 255
	var_FormatAppearance1 = var_FormatAppearances.Add("red")
	oPivot.TemplateDef = "dim var_FormatAppearance1"
	oPivot.TemplateDef = var_FormatAppearance1
	oPivot.Template = "var_FormatAppearance1.ForeColor = 255"

	' var_FormatAppearances.Add("green").ForeColor = 65280
	var_FormatAppearance2 = var_FormatAppearances.Add("green")
	oPivot.TemplateDef = "dim var_FormatAppearance2"
	oPivot.TemplateDef = var_FormatAppearance2
	oPivot.Template = "var_FormatAppearance2.ForeColor = 65280"

	' var_FormatAppearances.Add("blue").ForeColor = 16711680
	var_FormatAppearance3 = var_FormatAppearances.Add("blue")
	oPivot.TemplateDef = "dim var_FormatAppearance3"
	oPivot.TemplateDef = var_FormatAppearance3
	oPivot.Template = "var_FormatAppearance3.ForeColor = 16711680"

	' var_FormatAppearances.Add("bgrayed").BackColor = 8421504
	var_FormatAppearance4 = var_FormatAppearances.Add("bgrayed")
	oPivot.TemplateDef = "dim var_FormatAppearance4"
	oPivot.TemplateDef = var_FormatAppearance4
	oPivot.Template = "var_FormatAppearance4.BackColor = 8421504"

	' var_FormatAppearances.Add("bred").BackColor = 255
	var_FormatAppearance5 = var_FormatAppearances.Add("bred")
	oPivot.TemplateDef = "dim var_FormatAppearance5"
	oPivot.TemplateDef = var_FormatAppearance5
	oPivot.Template = "var_FormatAppearance5.BackColor = 255"

	' var_FormatAppearances.Add("bgreen").BackColor = 65280
	var_FormatAppearance6 = var_FormatAppearances.Add("bgreen")
	oPivot.TemplateDef = "dim var_FormatAppearance6"
	oPivot.TemplateDef = var_FormatAppearance6
	oPivot.Template = "var_FormatAppearance6.BackColor = 65280"

	' var_FormatAppearances.Add("bblue").BackColor = 16711680
	var_FormatAppearance7 = var_FormatAppearances.Add("bblue")
	oPivot.TemplateDef = "dim var_FormatAppearance7"
	oPivot.TemplateDef = var_FormatAppearance7
	oPivot.Template = "var_FormatAppearance7.BackColor = 16711680"

oPivot.PivotRows = "0[bold],2[grayed]"
oPivot.PivotColumns = "sum(5)[L1000],sum(5)[G1000]/12:A"
oPivot.PivotTotals = "sum[bold,content=currency,bgrayed]"
oPivot.AutoDrag = 16
oPivot.BackColorAlternate = 15790320
oPivot.FilterBarPromptType = 2
oPivot.FilterBarPromptPattern = "France Germany"
oPivot.EndUpdate()
? oPivot.Export("htm") 

129
Export Data in HTML format (IE)

Dim oPivot as P
Dim sFile as 
Dim var_FormatAppearance as local
Dim var_FormatAppearance1 as local
Dim var_FormatAppearance2 as local
Dim var_FormatAppearance3 as local
Dim var_FormatAppearance4 as local
Dim var_FormatAppearance5 as local
Dim var_FormatAppearance6 as local
Dim var_FormatAppearance7 as local
Dim var_FormatAppearances as P
Dim var_FormatConditionalAppearance as local
Dim var_FormatConditionalAppearance1 as local
Dim var_FormatConditionalAppearance2 as local
Dim var_FormatConditionalAppearances as P
Dim var_ShellBrowserWindow as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 2583 'exFilterBarCompact + exFilterBarShowCloseIfRequired + exFilterBarSingleLine + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
var_FormatConditionalAppearances = oPivot.FormatConditionalAppearances
	' var_FormatConditionalAppearances.Add("G1000","> 1000","value > 1000").ForeColor = 16711680
	var_FormatConditionalAppearance = var_FormatConditionalAppearances.Add("G1000","> 1000","value > 1000")
	oPivot.TemplateDef = "dim var_FormatConditionalAppearance"
	oPivot.TemplateDef = var_FormatConditionalAppearance
	oPivot.Template = "var_FormatConditionalAppearance.ForeColor = 16711680"

	' var_FormatConditionalAppearances.Add("L1000","< 1000","value < 1000").ForeColor = 255
	var_FormatConditionalAppearance1 = var_FormatConditionalAppearances.Add("L1000","< 1000","value < 1000")
	oPivot.TemplateDef = "dim var_FormatConditionalAppearance1"
	oPivot.TemplateDef = var_FormatConditionalAppearance1
	oPivot.Template = "var_FormatConditionalAppearance1.ForeColor = 255"

	' var_FormatConditionalAppearances.Add("Zero","zero","value = 0").BackColor = 14737632
	var_FormatConditionalAppearance2 = var_FormatConditionalAppearances.Add("Zero","zero","value = 0")
	oPivot.TemplateDef = "dim var_FormatConditionalAppearance2"
	oPivot.TemplateDef = var_FormatConditionalAppearance2
	oPivot.Template = "var_FormatConditionalAppearance2.BackColor = 14737632"

var_FormatAppearances = oPivot.FormatAppearances
	' var_FormatAppearances.Add("grayed").ForeColor = 8421504
	var_FormatAppearance = var_FormatAppearances.Add("grayed")
	oPivot.TemplateDef = "dim var_FormatAppearance"
	oPivot.TemplateDef = var_FormatAppearance
	oPivot.Template = "var_FormatAppearance.ForeColor = 8421504"

	' var_FormatAppearances.Add("red").ForeColor = 255
	var_FormatAppearance1 = var_FormatAppearances.Add("red")
	oPivot.TemplateDef = "dim var_FormatAppearance1"
	oPivot.TemplateDef = var_FormatAppearance1
	oPivot.Template = "var_FormatAppearance1.ForeColor = 255"

	' var_FormatAppearances.Add("green").ForeColor = 65280
	var_FormatAppearance2 = var_FormatAppearances.Add("green")
	oPivot.TemplateDef = "dim var_FormatAppearance2"
	oPivot.TemplateDef = var_FormatAppearance2
	oPivot.Template = "var_FormatAppearance2.ForeColor = 65280"

	' var_FormatAppearances.Add("blue").ForeColor = 16711680
	var_FormatAppearance3 = var_FormatAppearances.Add("blue")
	oPivot.TemplateDef = "dim var_FormatAppearance3"
	oPivot.TemplateDef = var_FormatAppearance3
	oPivot.Template = "var_FormatAppearance3.ForeColor = 16711680"

	' var_FormatAppearances.Add("bgrayed").BackColor = 8421504
	var_FormatAppearance4 = var_FormatAppearances.Add("bgrayed")
	oPivot.TemplateDef = "dim var_FormatAppearance4"
	oPivot.TemplateDef = var_FormatAppearance4
	oPivot.Template = "var_FormatAppearance4.BackColor = 8421504"

	' var_FormatAppearances.Add("bred").BackColor = 255
	var_FormatAppearance5 = var_FormatAppearances.Add("bred")
	oPivot.TemplateDef = "dim var_FormatAppearance5"
	oPivot.TemplateDef = var_FormatAppearance5
	oPivot.Template = "var_FormatAppearance5.BackColor = 255"

	' var_FormatAppearances.Add("bgreen").BackColor = 65280
	var_FormatAppearance6 = var_FormatAppearances.Add("bgreen")
	oPivot.TemplateDef = "dim var_FormatAppearance6"
	oPivot.TemplateDef = var_FormatAppearance6
	oPivot.Template = "var_FormatAppearance6.BackColor = 65280"

	' var_FormatAppearances.Add("bblue").BackColor = 16711680
	var_FormatAppearance7 = var_FormatAppearances.Add("bblue")
	oPivot.TemplateDef = "dim var_FormatAppearance7"
	oPivot.TemplateDef = var_FormatAppearance7
	oPivot.Template = "var_FormatAppearance7.BackColor = 16711680"

oPivot.ShowBranchRows = 33 'exBranchIncludeAggregate + exBranchTree
oPivot.PivotRows = "0[bold],2[grayed]"
oPivot.PivotColumns = "sum(5)[L1000],sum(5)[G1000]/12:A"
oPivot.PivotTotals = "/sum[bold,content=currency,bgrayed]"
oPivot.AutoDrag = 16
oPivot.BackColorAlternate = 15790320
oPivot.FilterBarPromptType = 2
oPivot.FilterBarPromptPattern = "France Germany"
oPivot.EndUpdate()
sFile = "c:/temp/export.htm"
oPivot.Export(sFile,"vis")
var_ShellBrowserWindow = OLE.Create("InternetExplorer.Application")
	var_ShellBrowserWindow.Navigate2(sFile)

128
Export Data in CSV format

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotRows = "0"
oPivot.PivotColumns = "sum(5),sum(5)/12:A"
oPivot.PivotTotals = "sum[bold,content=currency]"
oPivot.AutoDrag = 16
oPivot.BackColorAlternate = 15790320
oPivot.EndUpdate()
? oPivot.Export() 

127
Is it possible to change the visual appearance of the update / reload button being displayed in the control's pivot bar

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(1,"gBFLBCJwBAEHhEJAAEhABMsGACAADACAxRDgMQBQKAAzAJBIYhiG4cYCgMYxXDOCYXABCEYRXBIZQ7BKNIxjSJwCgkBYJDSMAiiaLETwHFKVRwkWBBWjMAAxDZFcggA77fwxHaOAghGgobjaPY+UbGERAAKQahLJamablCSqLjCS4kSLHEbQHTcRSzLKQZBBCCSQKkYx0HScRiwPBIbQkIQmbajOaYDCiQ53QLCAYRXS9PwvI7AMBwLA8EwXBo9DZiIy4WyuGj3R4WchAbIwIxUK6XHhmLjZXg+Bz9T6LQZ0JStEx2SYjAJqOiKU62W9xbAUOxQTpIBJXW7Oc7GTa8dQfPoJaIDLicHgoZ6NLIcOR0abSO42CRrdByfRYMwvisCQKnYOh9i4LwbBINpBHeBxeC6X4TAIEpzkIWgei8L4Qk2boEhWPg9C4SJijIOZ7mEXA/iAX5yBKDx/lmVhEC0Z5ZlKHgGAAYIHkGcQxiCQ5eA4PghAKNgSG0VYXEiJYFl+QAtiCBpdjcDJkB0IgAiYIgBmIQAWCYCoigYZB4DQYpAjoLh3h6SJFgcOpXlAAQBICA==")
oPivot.Template = "Background(184) = 16777216" // oPivot.Background(184) = 16777216
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.PivotBarVisible = 16780763 'exPivotBarAllowFormatConditionalAppearance + exPivotBarAllowResizeColumns + exPivotBarAllowUndoRedo + exPivotBarAllowFormatContent + exPivotBarAllowFormatAppearance + exPivotBarAllowValues + exPivotBarShowTotals + exPivotBarAutoFit + exPivotBarSizable + exPivotBarVisible
oPivot.EndUpdate()

126
Is it possible to change the visual appearance of the plus/add new button being displayed in the control's pivot bar

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(1,"gBFLBCJwBAEHhEJAAEhABDwCg6AADACAxRDgMQBQKAAzAJBIYhiG4cYCgMYxXDOCYXABCEYRXBIZQ7BKNIxjSJ5BhIAAyDSJMjSRJUEhqGCWYDleYYYAKHIMQLJQKQSBcQR9EaBZBAWTpQC0OJDTJRI4TNAgbSYAAYRqoCb6loTKypaxjCQQIgkUBpGKdBynEYsDwSGyJCCJWyIbpKAwoVbcs4AYhuJpaQi+d5PFbjVT8dLAMBwLA8EwXAJ+OpfDxXU7eFKpR5fchXTI8UxXFqXZhkeQrfh7KYVRBKdBQRBEFQPJqnahqOpaXo2RoLUJKcQwHTmHYNQTALyuTALZrWeZ3XrgN74LbtZzVQauYRpbCMEr6bpoWLnFi6Ho1U4llWah1jqSweFqfxPgQQRphi+Yak0YIuqUfJegef4zluaJ3nqPJeCYH4BAeX5TDLBpVGqKRRnwf4flefZtHsX54BYAR/F+EwVnUd5eAMMJKDIChygyIQpAoEh4iIJ5JlgXIcgCXpIGoFwnGEQh6BEKBgmMIICHgIJCAiUAzgyUoAhwJohkiRgygwYpiGoKwzGIcgKCkNQNCMRIbCYCRYk4QoMiOchWDwNBjhiJJaDYTRiGiFwlCQAhOE8JBJHITIRgwZRZFCFCZBkOIUhKTRpCWAwgGYQ4El4NxlBifIWCcCYCFoaoMGaKYyG6GxlBmGJdhkCAWBIeA5g4U4QhMJAImkPIShRVxGgQJRlCIUISh+SJpnCZIeBgFgiHgO4OlOMINCISByECDQikkGhuh2JwpmqBogCKaYiC6FwhmkQ4yHgYgYiaHopiuaRakCbIsisSpGjYOwaHYKYMCkK5CA2IxrCwCwFigaJrkLTI6lcdANAEgIA=")
oPivot.Template = "Background(183) = 16777216" // oPivot.Background(183) = 16777216
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.EndUpdate()

125
Is it possible to change the visual appearance of the position signs when user changes the column's position by drag and drop

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.HeaderAppearance = 4
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(1,"gBFLBCJwBAEHhEJAAEhABZEGACAADACAxRDgMQBQKAAzAJBIYhiG4cYCgMYxXDOCYXABCEYRXBIZQ7BKNIxjSJwFgmEgADKMA4SOKIZhrE4bBhGaQRUgyI43RhHUBzVIUcQvE6TZRHCQYHgkNIhDJIM7TPLkeSVJaTIRoKhJUogApQThTMgVRDEThkGoSa6soSoYTDBKybLrSLKagOT5YUDKUqSdKEZRpEq1YztWbaQoCUoqVRRVIWfbNd4JJa4aDhWpYdpeeY5R7bWLgBYVVABL7LLRsSxpHxPF6RXxaeI3GKsaS8G6ic6nPQMHj7I4NS5pUa6Rh2VYNSa8AAtETRYznOw4bTMXAjNIea5bAYIIR5HIoDzVbQcCQAHL9DBeEMIQEEISgGhMGZQmocgymoYRRCIEQ0G2HYBnEIBig4V4zCQGINnmagCECY43medZ6H2Pw/g+X5fnueh/h+R5+AKABfkMWgGgGYA4AICoCGCE5WA4CphACMgSD2IRIDIBICmEd5YGCBpRjGBgegWIYIgWdgoGIRQsiKCZiAiJZ0gGQI4jUS4LECOAiBmDJflGfg2BSY4Al4OhGkOCJ2DgFJjGGfgqgiH5Ch4RhGkqOQmEOEpkFkHQYhJRYyESAokGKHhIhKIxJEmf4VGUeRGFmF5iBkchPhYJQ5GoYIZg6Ug6GoFYmkmNhuhulRGHKGoImefh0BUZ4JmYeoemeSZ2H6HQmgoBgXDqXwUAQgI=")
	var_Appearance.Add(2,"CP:1 0 -36 0 0")
oPivot.Template = "Background(182) = 33554432" // oPivot.Background(182) = 33554432
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.EndUpdate()

124
FilterBarCaption ALL Keyword ( sample 2, result )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 2583 'exFilterBarCompact + exFilterBarShowCloseIfRequired + exFilterBarSingleLine + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

123
FilterBarCaption ALL Keyword ( sample 1 )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "all"
oPivot.FilterBarPromptVisible = 3 'exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

122
FilterBarCaption ALLUI Keyword ( sample 2, result )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( allui replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 3 'exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

121
FilterBarCaption ALLUI Keyword ( sample 1 )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "allui"
oPivot.FilterBarPromptVisible = 3 'exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

120
FilterBarCaption AVAILABLE Keyword ( sample 2, result )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(( ( value replace `[` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>` ) + ` ` + ( available replace `[` with `<bgcolor=C0C0C0><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>` replace `<s>` with `` replace `</s>` with `` ) + `<fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))"
oPivot.FilterBarPromptVisible = 3 'exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

119
FilterBarCaption AVAILABLE Keyword ( sample 1 )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080> `` + value + `` </fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "value + ` ` + available"
oPivot.FilterBarPromptVisible = 3 'exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

118
Is it possible to somehow highlight the column's name different than its filter value in the control's filter bar ( sample 3, results )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080>`` + value + ``</fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080>` + value + `</fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "(`<b>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<fgcolor=808080>`+ itemcount + ` item(s)`) )) replace `[` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>`"
oPivot.FilterBarPromptVisible = 256
oPivot.EndUpdate()

117
Is it possible to somehow highlight the column's name different than its filter value in the control's filter bar ( sample 2 )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080>`` + value + ``</fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080>` + value + `</fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "value replace `[` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>`"
oPivot.FilterBarPromptVisible = 256
oPivot.EndUpdate()

116
Is it possible to somehow highlight the column's name different than its filter value in the control's filter bar ( sample 1 )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.Template = "Description(11) = FormatABC(```<fgcolor=808080>`` + value + ``</fgcolor>```,Description(11))" // oPivot.Description(11) = oPivot.FormatABC("`<fgcolor=808080>` + value + `</fgcolor>`",oPivot.Description(11))
oPivot.FilterBarCaption = "value replace `[` with `<fgcolor=808080>[` replace `]` with `]</fgcolor>`"
oPivot.FilterBarPromptVisible = 256
oPivot.EndUpdate()

115
Is it possible to automatically displays the control's filter label to the right

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarCaption = "`<r>` + value"
oPivot.FilterBarPromptVisible = 1280 'exFilterBarShowCloseOnRight + exFilterBarToggle
oPivot.EndUpdate()

114
How can I get the number of results/items being shown in the control's filter bar (sample 4)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.FilterBarPrompt = oPivot.FormatABC("`<b>` + value",oPivot.FilterBarPrompt)
oPivot.FilterBarCaption = "`<b><r>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `<br>` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<fgcolor=808080>`+ itemcount + ` item(s)`) )"
oPivot.FilterBarPromptVisible = 3591 'exFilterBarCompact + exFilterBarShowCloseOnRight + exFilterBarShowCloseIfRequired + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

113
How can I get the number of results being shown in the control's filter bar (sample 3)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.FilterBarCaption = "`<b><r>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `<br>` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : ``)"
oPivot.FilterBarPromptVisible = 2055 'exFilterBarCompact + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

112
How can I get the number of results being shown in the control's filter bar (sample 2, compact)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.FilterBarCaption = "`<b><r>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? `<off -4> ` + abs(matchitemcount + 1) + ` result(s)` : ``)"
oPivot.FilterBarPromptVisible = 2071 'exFilterBarCompact + exFilterBarSingleLine + exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

111
How can I get the number of results being shown in the control's filter bar (sample 1)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.FilterBarCaption = "`<b>` + value + `</b><r><fgcolor=808080>` + ( matchitemcount < 0 ? abs(matchitemcount + 1) + ` result(s)` : ``)"
oPivot.FilterBarPromptVisible = 7 'exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

110
FilterBarCaption Predefined Keywords

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.LinesAtRoot = -1
oPivot.FilterInclude = 1
oPivot.FilterBarFont = oPivot.Font
oPivot.FilterBarCaption = "`<fgcolor=0000FF><i>value/current</i></fgcolor>: <fgcolor=808080>` + value + `</fgcolor>` + `<br><fgcolor=0000FF><i>available</i></fgcolor>: ` + available + `<br><fgcolor=0000FF><i>allui</i></fgcolor>: ` + allui + `<br><fgcolor=0000FF><i>all</i></fgcolor>: ` + all + `<br><fgcolor=0000FF><i>itemcount</i></fgcolor>: <fgcolor=808080>` + itemcount + `</fgcolor>`+ `<br><fgcolor=0000FF><i>visibleitemcount</i></fgcolor>: <fgcolor=808080>` + visibleitemcount + `</fgcolor>`+ `<br><fgcolor=0000FF><i>matchitemcount</i></fgcolor>: <fgcolor=808080>` + matchitemcount + `</fgcolor>`+ `<br><fgcolor=0000FF><i>promptpattern</i></fgcolor>: <fgcolor=808080>` + promptpattern + `</fgcolor>`+ `<br><fgcolor=0000FF><i>leafitemcount</i></fgcolor>: <fgcolor=808080>` + leafitemcount + `</fgcolor>`"
oPivot.FilterBarPromptPattern = "USA"
oPivot.FilterBarPromptVisible = 7 'exFilterBarCaptionVisible + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

109
I am using filter prompt feature, and also column's filter, just wondering if possible to compact displaying the filter bar so it won't show on multiple lines

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarFont = oPivot.Font
oPivot.FilterBarCaption = "`<r><i><fgcolor=808080><upline><solidline><sha ;;0>` + value"
oPivot.FilterBarPromptPattern = "USA"
oPivot.FilterBarPromptVisible = 2067 'exFilterBarCompact + exFilterBarSingleLine + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

108
Just wondering if it is possible to show the filter bar's close button on the right ( sample 2 )

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarPromptVisible = 1281 'exFilterBarShowCloseOnRight + exFilterBarToggle + exFilterBarPromptVisible
oPivot.FilterBarPrompt = oPivot.FormatABC("`<r>` + value",oPivot.FilterBarPrompt)
oPivot.EndUpdate()

107
How can I change the visual appearance of the filter bar's close button (EBN)

Dim oPivot as P
Dim var_Appearance as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
var_Appearance = oPivot.VisualAppearance
	var_Appearance.Add(1,"gBFLBCJwBAEHhEJAAEhABHQDg6AADACAxRDgMQBQKAAzAJBIYhiG4cYCgMZhXDOCYXABCEYRXBIZQ7BKNIxjSJ5BhIAAyDSJMjSRJUEhqGCWYDleYYYAKHIMQLOg7IJjyI4/SJAYCydKAWhxIaZKJHCZoEDaTAADCNVAQp6MEIJVbVEI0e79OgBLp/Z7kECIJJAaRjHQdJxGLA8EhtCQhCZteK6SgMKJYXhWQYRXI1JwvMBrWrdQjiOYELQtMKmSZNLYGG4dR5SVJbcYhSYsRRFMoyDIOXYDLKsdYqSpXIThObEGgaPqJYjsUjCMKnR7HVIURrBPC9TBPE69ZgmC6ucKPX51ShKFaBWDZcwFAS+UBuYCAILiEAQGZ1XT8OROicbgJgSTJRlCaZeDsHY7QGR4xkSYp3CaExZAQMgalQYAwjCAAfBANxcA2TgKAUOpDCGFhKg0RpXCwCwDHQHQHEyAIkCkOhbFOGA8A8DohBgRg9AccZcn8EpEjMLI2C2DYxAgQgvAIUIVkoAAPBQDJlECTZ3CCYwDACQwUA8A5MCAWAWDiQi4l8aQOEgLJuBgBgDmYFAzEoIoIl0WALgKYJbBABADAAHgHg8VAMmqCQQDMXABAATYwTmNwBDATJXAiAgjHmNQ5lgQ5QEQEQMmcWg/GwD5ylyNw2gMcJcjsBgBgOQQDDhRpVAMMwnDBFw1B0Ax8D0DxOmmJJIGQTY5hGMAwkwM4CAYLZAmAOJnAqAojiIGg6iieYkmeAYOHaKJDCyCwjH6AoggsQpQliAJLhgaJ0CESBTnyDwjk+cg4g4P5IHIHJ+BWRRzlYWAxiOUxihsY4KjKLJRGqC44FCegkkkM58iAKAPnIWIWD8SRSFSfQnkmewUhYP4GiGKJ7G0TIbCSUoggqUo0lAQ4LnEcBcD8Coiiif4nE+eAAn2HpOkcFJqi4T5SkyMw/kqQown8IBIBOdA+A+DJrBqVxXEqYo4lCApLhGHBnD8S4ymyfxmg+cwQkQP5egOUZIWoEAkjIeIPBMBJBD+TBjBifwvkuc58hQJQPmFrYykkchclSApKjGOBuD+TRDFCfw3mmIxNi8FxFlOXhVC4aYDFyPgvg2YBcBcLZGCGCJ0DSLRzGSWQ/lmY5+mEP5gmMDBZRSMRsFsOxMhMJJ/DsTpTnwaQaE+N5ojuNhdEYNI5C4TZJO1GRDmCaxnA2Yx4n8IpIjOTBQBQC5TgyYw7gUYRYikC0BYRwsDQBoB8eA6Q2hsE0BUXgywZtYCyHMKwnxSAhAQHkIQhRrBaDsCwA4ERiB2EWAIYIXhhiVEgAEUYwwYjyASLge4FhHgRDkM8OQih0jWPkGgBBAQ")
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarPromptVisible = 257 'exFilterBarToggle + exFilterBarPromptVisible
oPivot.Template = "Background(1) = 16777216" // oPivot.Background(1) = 16777216
oPivot.EndUpdate()

106
How can I change the visual appearance of the filter bar's close button (solid)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarPromptVisible = 1
oPivot.Template = "Background(1) = 255" // oPivot.Background(1) = 255
oPivot.EndUpdate()

105
Is it possible to prevent definitely showing the filter bar's close button

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarPromptVisible = 1
oPivot.Template = "Background(1) = -1" // oPivot.Background(1) = -1
oPivot.EndUpdate()

104
Is it possible to show the close button only if there is a filter applied

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarPromptVisible = 513 'exFilterBarShowCloseIfRequired + exFilterBarPromptVisible
oPivot.EndUpdate()

103
The control's filter bar is not closed once I click the close button (toggle)
Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarCaption = "`<r><fgcolor=808080>` + value"
oPivot.FilterBarPromptPattern = "USA"
oPivot.FilterBarPromptVisible = 2323 'exFilterBarCompact + exFilterBarToggle + exFilterBarSingleLine + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()

102
How can I display the control's filter on a single line

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarCaption = "len(value) ? `filter for: <fgcolor 808080>` + value  : `<fgcolor 808080>no filter`"
oPivot.FilterBarPromptVisible = 18 'exFilterBarSingleLine + exFilterBarVisible
oPivot.EndUpdate()

101
How can I display the control's filter on a single line (prompt-combined)

Dim oPivot as P

oPivot = topparent:CONTROL_ACTIVEX1.activex
oPivot.BeginUpdate()
oPivot.Import("C:\Program Files\Exontrol\ExPivot\Sample\data.txt")
oPivot.FilterBarCaption = "`<r>` + value"
oPivot.FilterBarPromptVisible = 2067 'exFilterBarCompact + exFilterBarSingleLine + exFilterBarVisible + exFilterBarPromptVisible
oPivot.EndUpdate()