|
Tick entries globally silently. |
|
|
void TickGlobal ( SHORT sPasses, VARIANT_BOOL bEqualAmountsFirst, VARIANT_BOOL bBalanceMustBeZero, VARIANT_BOOL bGeneral, VARIANT_BOOL bCustomers, VARIANT_BOOL bSuppliers ) |
|
|
Parameters | sPasses | [in] The number of passes in which you want to globally tick.
|
1 = |
|
tick all entries where the amounts as well as the remarks are equal |
|
2 = |
|
pass 1 + tick all entries where the amounts are equal (parameter bEqualAmountsFirst = true) or where the remarks are equal (parameter bEqualAmountsFirst = false) |
|
3 = |
|
pass 2 + tick all entries where the amounts are equal (parameter bEqualAmountsFirst = false) or where the remarks are equal (parameter bEqualAmountsFirst = true) |
|
4 = |
|
pass 3 + tick all other entries |
| bEqualAmountsFirst | [in] In this parameter you state your preference for or equal amounts (true) or equal remarks (false). It results in the following:
|
True |
|
pass 2: equal amounts pass 3: equal remarks |
|
False |
|
pass 2: equal remarks pass 3: equal amounts |
| bBalanceMustBeZero | [in] True if, in the 4° pass, you only want to globally tick the remaining entries if the balance is 0, false otherwise. | bGeneral | [in] True if you want to globally tick general account entries, false otherwise. | bCustomers | [in] True if you want to globally tick customer entries, false otherwise. | bSuppliers | [in] True if you want to globally tick supplier entries, false otherwise. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Globally tick all supplier entries in 4 passes with a preference for equal amounts
pEntry->TickGlobal (4, VARIANT_TRUE, VARIANT_FALSE, VARIANT_FALSE, VARIANT_FALSE, VARIANT_TRUE);
|
|
|
C# |
|
// Globally tick all supplier entries in 4 passes with a preference for equal amounts
oEntry.TickGlobal (4, true, false, false, false, true);
|
|
|
VBS |
|
' Globally tick all supplier entries in 4 passes with a preference for equal amounts
Call oEntry.TickGlobal(4, True, False, False, False, True)
|
|
|
VB.NET |
|
' Globally tick all supplier entries in 4 passes with a preference for equal amounts
oEntry.TickGlobal(4, True, False, False, False, True)
|
|