Hi just created a listbrowser with 3 columns (Month, Day, Text), but I'm not able to get Month and Day values with GetListBrowserNodeAttrs() I know is somethig with pointers/LBNCA_Integer (* int32), but did some test, but none of them showed Month/Day correctly :-(
Someone more clever than my can help?
TIA
.. case GID_LISTBROWSER: IIntuition->GetAttr(LISTBROWSER_SelectedNode, OBJ(GID_LISTBROWSER), (uint32 *)&res_node); if(res_node) { int32 month, day; IListBrowser->GetListBrowserNodeAttrs( (struct Node *)res_node, LBNA_Column,0, LBNCA_Integer,(int32 *)&month, LBNA_Column,1, LBNCA_Integer,(int 32*)&day, LBNA_Column,2, LBNCA_Text,&res_text, TAG_END); IDOS->Printf("GET listbrowser's entry data: MM=%ld DD=%ld '%s'\n",&month,&day,res_text); } break; ..