Chekbox selected in ListBox

Hello everyone
Xojo

I am grateful for the interest and scope of the following:

In a ListBox I have a column of type checkbox
As I do, by default it has the value of true (selected) in the checkbox

Any ideas will be greatly appreciated.

Cordially,
Raúl Juárez Pulache

I answered myself
Very simple

For i As Integer = 0 To DataList.ListCount-1
DataList.CellCheck (i, 6) = True
Next

DataList is the name of the listbox
6 is the chkbox column

It tooks a time until I worked with checkboxes in listboxes as well.

This code looks great. :slight_smile: