Open Form Example

Give an example for open_form with parameter passing from one form to another form?

Questions by king_ora007

Showing Answers 1 - 9 of 9 Answers

Liton

  • Jan 15th, 2009
 

sample code:

BEGIN
       CALL_FORM('FORM2',
              NO_HIDE,
              DO_REPLACE,          -- replace menu
              NO_QUERY_ONLY,
              SHARE_LIBRARY_DATA);
END;

look at the forms help for the differences between OPEN_FORM and CALL_FORM.

dinesh 9994988813

  • Sep 24th, 2011
 

Code
  1. HIDE_WINDOW('WINDOW1');

  2. CALL_FORM('this u r file save path',NO_hide,no_replace,no_Query_only);

  3. SHOW_WINDOW('WINDOW1');

  Was this answer useful?  Yes

siva krishna chowdary n

  • Dec 21st, 2011
 

call_form(file namw with path,no_hide,do_replace,no_query_only);

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions