First decide how you will store the data items you want to browse.
In an array, a TList, a TFPList, a linked list, an external database... or whatever.
Then write GetFirst() and GetNext() functions that return the data you want, based on the container you've chosen to use for their storage.
Hook up your ShowNext button's OnClick to a ShowNext(Sender: TObject); method that calls GetNext() and displays the data it receives.