Purnachandra wrote: > How to display the Brows_list1 values into Brows_list2?
Use text() to get the text from each row of brows1,
and add() it to the other, ie. something like:
// Copy all of brows1 into brows2
brows2->clear(); // clear brows2
for ( int t=1; t<=brows1->size(); t++ ) { // loop through entries
in brows1
brows2->add(brows1->text(t)); // add to brows2
}
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

