Last version before v9.3 release e-node published today a mainteance release of AreaList Pro – v9.2r5
There is a new demo database and an enhenced example database.
Added features:
- ALP_Column_FromCell accepts zero as valid argument (result is zero)
- AL Icon Flags Use Picture Lib is of no value – icon is always looked-up in the Picture Library if not already in cache
- added new properties for hierarchy
- added new Row property
category: Row Hierarchy
property name: ALP_Row_ChildCount
property value: “hicc”
property is read only
property type: integer
usage: count of immediate children - added new Row property
category: Row Hierarchy
property name: ALP_Row_ChildCountAll
property value: “hicC”
property is read only
property type: integer
usage: count of all children - added new Row property
category: Row Hierarchy
property name: ALP_Row_Children
property value: “hiac”
property is read only
property type: integer array
usage: row numbers of immediate children - added new Row property
category: Row Hierarchy
property name: ALP_Row_ChildrenAll
property value: “hiaC”
property is read only
property type: integer array
usage: row numbers of all children
These new properties can be used with row = 0 to access root-level items.
The row numbers do not honor current sort order.
$countChilds:=AL_GetRowLongProperty ($area;0;ALP_Row_ChildCount) // count root-level items $countChilds:=AL_GetRowLongProperty ($area;1;ALP_Row_ChildCountAll) // count all sub-items for row 1 hierarchy ARRAY LONGINT($aChildren;0) $err:=AL_GetRowPtrProperty($area;0;ALP_Row_Children;->$aChildren) // get row numbers of root-level items
[amazon_image id=”386063593X” link=”true” target=”_blank” size=”medium” ]Code Complete – Deutsche Ausgabe der Second Edition[/amazon_image] – [amazon_image id=”B005O9CNLQ” link=”true” target=”_blank” size=”medium” ](Code Complete) By McConnell, Steve (Author) Paperback on 01-Mar-2004[/amazon_image]-[amazon_image id=”3826655486″ link=”true” target=”_blank” size=”medium” ]Clean Code – Refactoring, Patterns, Testen und Techniken für sauberen Code: Deutsche Ausgabe[/amazon_image]
