Hi,
I have a(nother) question:
"
PlusWndObject.LstView_SetItemText" and "
PlusWndObject.LstView_SetItemText" don't work..
Code 1 (SET):
code:
for(i = 1; i <= LastNotif; i++) {
D = XmlParser.selectSingleNode("//Notification" + i);
NotificationNames[i] = D.getAttribute("Value");
WndNotifs.LstView_AddItem("LstVNotifs",NotificationNames[i]);
NotificationPages[i] = Script.MainUrl + D.getAttribute("Page");
WndNotifs.LstView_SetItemText("LstVNotifs",i,2,NotificationPages[i]);
}
Code 2 (GET):
code:
nPage = WndNotifs.LstView_GetItemText("LstVNotifs",ItemIdx,2);
"get" returns nothing.. Set does nothing either..
Could anybody please help me?