Avatar

Level 10

The form can only display one record at a time. You can add controls to your form that will allow you to navigate through the records. Add the following buttons to aid in navigation:

Next

Previous

First

Last

On the click event of each button add the code to perform the appropiate action (assuming you have named your connection DataConnection:

xfa.sourceSet.DataConnection.next();

xfa.sourceSet.DataConnection.previous();

xfa.sourceSet.DataConnection.first();

xfa.sourceSet.DataConnection.last();

Test it.

Paul