User login
|
|
Frontpage Sponsor
|
|
Google search
|
|
Poll
|
For ERP LN feature pack upgrade, what method of install are you using? Installation Wizard into existing VRC 38% Installation Wizard into new VRC 38% Manual into existing VRC 5% Manual into new VRC 19% Total votes: 42 |
Baanboard at LinkedIn
|

|
|
|
Items for 'Manual' (by date)
|
By patvdv at 26 Feb 2008 - 21:57
|
get.argc()
Syntax
long get.argc()
Description
This function returns the number of arguments supplied to the currently executing function (i.e. the function in which get.argc() is called). Once you know this number, you can read from and write to particular arguments using the other functions.
Context
Bshell function.
|
|
By patvdv at 26 Feb 2008 - 21:57
|
Duplicate and Add Nodes
Synopsis
long xmlDuplicateAndAdd(long destinationNode, long fromNode, [ long toNode ])
XML library function
XmlNodePointer xmlDupListAndAdd(XmlNodePointer _pFrom, XmlNodePointer _pTo, XmlNodePointer _pDest, XmlContextPointer pContext);
Description
Duplicate a tree or a list of trees and add this list to a new list after the node referred to by destinationNode.
|
|
By patvdv at 26 Feb 2008 - 21:57
|
get.double.arg(), get.long.arg(), get.string.arg()
Syntax
double get.double.arg( long arg_no )
long get.long.arg( long arg_no )
string get.string.arg( long arg_no )
|
|
By patvdv at 26 Feb 2008 - 21:57
|
Duplicate and Append Nodes
Synopsis
long xmlDuplicateAndAppend(long destinationNode, long fromNode, [ long toNode ])
XML library function
XmlNodePointer xmlDupListAndAppend(XmlNodePointer _pFrom, XmlNodePointer _pTo, XmlNodePointer _pDest, XmlContextPointer pContext);
Description
Duplicate a tree or a list of trees and append this list to the end of the list referred to by destinationNode.
|
|
By patvdv at 26 Feb 2008 - 21:57
|
Functions with variable number of arguments: overview
In the BAAN 3GL programming language, you can define a function with a variable number of arguments. For example:
function long change.attributes( long id, ... )
{
|
| some code
|
}
The ellipsis [...] in the function definition indicates that the number of function arguments is variable, up to a maximum of 255. The function call determines how many and which arguments the function uses.
|
|
By patvdv at 26 Feb 2008 - 21:57
|
Duplicate and Append Nodes to Children
Synopsis
long xmlDuplicateAndAppendToChilds(long parentNode, long fromNode, [ long toNode ])
XML library function
XmlNodePointer xmlDupListAndAppendToChildList(XmlNodePointer _pFrom, XmlNodePointer _pTo, XmlNodePointer _pDest, XmlContextPointer pContext);
Description
|
|
By patvdv at 26 Feb 2008 - 21:57
|
put.double.arg(), put.long.arg(), put.string.arg()
Syntax
long put.double.arg( long arg_no, double value )
long put.long.arg( long arg_no, long value )
long put.string.arg( long arg_no, string value )
|
|
By patvdv at 26 Feb 2008 - 21:57
|
Duplicate and Insert Nodes
Synopsis
long xmlDuplicateAndInsert(long destinationNode, long fromNode, [ long toNode ])
XML library function
XmlNodePointer xmlDupListAndInsert(XmlNodePointer _pFrom, XmlNodePointer _pTo, XmlNodePointer _pDest, XmlContextPointer pContext);
Description
Duplicate a tree or a list of trees and insert this list in a new list before the node referred to by destinationNode.
|
|
By patvdv at 26 Feb 2008 - 21:57
|
query.sub.object()
Syntax
long query.sub.object( long object_id, long sub_object_id [, long attribute_in, value_in [, size_in] ] ... [, long attribute_in, ref value_out [, ref size_out] ] ... )
Description
This retrieves information about a specified subobject, based on specified attribute values. For example, you can query a DsCgpOleSite subobject for data in a specific format.
|
|
By patvdv at 26 Feb 2008 - 21:57
|
Variables (checking changes) overview
These functions provide a mechanism for checking changes to variables. The variables can be of type string, long, double, domain, or array.
|
|
|