Problem PanelGadget (RemoveGadgetItem and CountGadgetItems)
Posted: Fri Apr 22, 2016 4:11 pm
Hi,
I have a problem with the PanelGadget. RemoveGadgetItem and CountGadgetItems do not seem to be working.
Same code in Purebasic is ok.
Thank you for help!
I have a problem with the PanelGadget. RemoveGadgetItem and CountGadgetItems do not seem to be working.
Same code in Purebasic is ok.
Code: Select all
OpenWindow(0,10,10,500,500,"Panel ...")
PanelGadget(10,0,0,500,400)
AddGadgetItem(10,0,"Tab " + CountGadgetItems(10))
AddGadgetItem(10,1,"Tab " + CountGadgetItems(10))
AddGadgetItem(10,2,"Tab " + CountGadgetItems(10))
CloseGadgetList()
RemoveGadgetItem(10,1)