PtListAddItems Row and Column data

Hi All,
I am using PtList in one of my project, To add items I am using
PtListAddItems() like this:
int First = 10;
char Second[20] = “Second”;
int Third = 30;
char line[10];
char my_line[100];
callback
{
sprintf(my_line, “%d, %s %d”, First,Second,Third);
line[0] = my_line;
PtListAddItems(widget, (const char
*)line, 1,1);
}

With this code I am able to add Items to the list.

But I want to access individual column and row wise ( I remember in
windows MFC it is possible)
like :
add(0,0) add(0,1) add(0,2)
add(1,0) add(1,1) add(1,2)

Is any way doing like this in photon.

Thanks & Regards,
Suresh Kumar. Kavula

Suresh Kumar wrote:

Hi All,
I am using PtList in one of my project, To add items I am using
PtListAddItems() like this:
int First = 10;
char Second[20] = “Second”;
int Third = 30;
char line[10];
char my_line[100];
callback
{
sprintf(my_line, “%d, %s %d”, First,Second,Third);
line[0] = my_line;
PtListAddItems(widget, (const char
*)line, 1,1);
}

With this code I am able to add Items to the list.

But I want to access individual column and row wise ( I remember in
windows MFC it is possible)
like :
add(0,0) add(0,1) add(0,2)
add(1,0) add(1,1) add(1,2)

Is any way doing like this in photon.

Thanks & Regards,
Suresh Kumar. Kavula

As far as I know, no it is not. It would be fairly trivial to do it
yourself though.

Garry