quote:
Originally posted by markee
It should be
code:
while(PlusWnd.LstView_GetCount("ListView") != 0)
This will give a boolean expression like the while statement wants
code:
while(PlusWnd.LstView_GetCount("ListView") > 0)
Hmph,
> owns
!=
quote:
Originally posted by SpunkyLoveMuff
I did try that too... I might give it another go though
You should have something like this:
code:
while(PlusWnd.LstView_GetCount("ListView") > 0){
PlusWnd.LstView_RemoveItem("ListView", 0);
}