Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to add navigation buttons to an Oracle form.

Status
Not open for further replies.

fmasin

Technical User
May 3, 2002
163
GB
Hi,

I have added two buttons to my form;

For Adding records and clearing the form:

The Add trigger is as follows: Begin
Commit; End;
The clear_form: Begin clear_form; End;

I would like to add buttons to go to next record and go back to Previous record. What is the syntax for the triggers? Please help.








Thanks and regards,

Francis
 
NEXT_RECORD or GO_RECORD:)SYSTEM.CURSOR_RECORD + 1) for next record.

PREVIOUS_RECORD or GO_RECORD:)SYSTEM.CURSOR_RECORD - 1) for previous record.

Check the block for the buttons.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top