[SOLVED] Hide ListIconGadget() Header Row? -- Thanks BarryG
Posted: Wed Dec 31, 2025 12:23 am
Is there a way to hide the column header row? I used null string but that didn't do it. Still showing. Would like it to shw like a List view Gadget but I want checkboxes so it can be used ass a checklist. I was woring with a samople straight out of help:
Code: Select all
If OpenWindow(0, 100, 100, 300, 100, "ListIcon Example", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
ListIconGadget(0, 5, 5, 290, 90, "", 100, #PB_ListIcon_CheckBoxes|#PB_ListIcon_FullRowSelect | #PB_ListIcon_AlwaysShowSelection)
AddGadgetColumn(0, 1, "", 250)
AddGadgetItem(0, -1, "Harry Rannit"+Chr(10)+"12 Parliament Way, Battle Street, By the Bay")
AddGadgetItem(0, -1, "Ginger Brokeit"+Chr(10)+"130 PureBasic Road, BigTown, CodeCity")
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
EndIf