RE: [HELP] Get/set item text
Your loop goes from i = 1 to the i = LastNotif.
But the index in the ListView is null-based... so why not try
WndNotifs.LstView_SetItemText("LstVNotifs",i-1,2,NotificationPages[i]);
instead of
WndNotifs.LstView_SetItemText("LstVNotifs",i,2,NotificationPages[i]);
?
|