The above function returns a ListItem object which is the item you have just added. Within this object there is a collection of ListSubItems which has an add method to add new items: thus-
dim objXXX as Listitem
set objXXX = lvFunctions.ListItems.Add intIndex, , prsData!FunctionCode
objXXX.ListSubItems.Add
Hope this helps,
Chris Dukes