Hi
On below code i am getting syntax error
m_Date := FrDate;
while m_Date <= ToDate do
arrMonths[ctr0] := m_Date
ctr0 := ctr0 + 1
m_Date := m_Date + 1;
Thanks
*This post is locked for comments
Correct syntax:
m_Date := FrDate;
while m_Date <= ToDate do
BEGIN
arrMonths[ctr0] := m_Date;
ctr0 := ctr0 + 1;
m_Date := m_Date + 1;
END;
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156