|
Finds the next financial year for the given year. |
|
|
SHORT FindNextYear ( SHORT sYear ) |
|
|
Parameters | sYear | [in] The year you want to find the next financial year of. | | Return value |
A SHORT containing the next financial year if one exists for the given year, otherwise 0. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Find the first financial year after year 2024
short sYear = pDossier->FindNextYear (2024);
|
|
|
C# |
|
// Find the first financial year after year 2024
short sYear = oDossier.FindNextYear (2024);
|
|
|
VBS |
|
' Find the first financial year after year 2024
Dim sYear
sYear = oDossier.FindNextYear(2024)
|
|
|
VB.NET |
|
' Find the first financial year after year 2024
Dim sYear As Short
sYear = oDossier.FindNextYear(2024)
|
|