Code: Select all
ExamineDesktops()
OpenWindow(0, 0, 0, 800, 600, "", #PB_Window_ScreenCentered)
;Enter 0, 100, 200, ... The width of the column does not change
ListIconGadget(0, 0, 0, 800, 600, "Col 0", 100, #PB_ListIcon_CheckBoxes | #PB_ListIcon_FullRowSelect)
;AddGadgetColumn(0, 1, "Col 1", 200)
For i = 1 To 10
AddGadgetItem(0, -1, "Note " + i)
Next
http://forums.spiderbasic.com/viewtopic.php?f=11&t=734