I noticed, after I switched from Win7 to Win11, that the gridline
between header and first line is missing. At least here.
Code: Select all
If OpenWindow(0,0,0,500,250,"Window",#PB_Window_SystemMenu|#PB_Window_ScreenCentered)
ListIconGadget(1,10,10,480,230,"Titel",400,#PB_ListIcon_GridLines|#PB_ListIcon_FullRowSelect)
For a=1 To 5
AddGadgetItem(1,-1,"Item "+Str(a),0,0)
Next
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf


