It's very easy. You just set the List Box index to the last item with SetCtrlIndex. Like this:
GetNumListItems (panelHandle, PANEL_LISTBOX, &count);
SetCtrlIndex (panelHandle, PANEL_LISTBOX, count-1);
First you get the Number of Items in the list (if you don't already have it in a variable), then you set the list box index to that value minus 1 (zero-based). That will cause the list to select and display the last entry.
Best Regards,
Chris Matthews
National Instruments