Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: dev2000 2.1 - how do I?
Julie Cansfield wrote:
> 1. how do you force the data block to be filled when the form is loaded
> rather than having to use Query....Execute?
>
> 2. Having got a filled form how do I insert a blank line (for new record
> insert) without using the menu option Record....Insert? I would like a
> push button to do this.
>
1.
in the NEW-FORM-INSTANCE Trigger put:
go_block('your_block');
execute_query;
2.
in the WHEN-BUTTON-PRESSES Trigger put:
create_record; Received on Fri Sep 18 1998 - 07:03:40 CDT
![]() |
![]() |