how to call forms in parametar forms
Answers were Sorted based on User's Feedback
Call_Form('<Here Put The proper Path Of Your .FMX File What You Want To Call>');
OR
OPEN_Form('<Here Put The proper Path Of Your .FMX File What You Want To Call>');
OR
Call_Form('<Here Put The proper Path Of Your .FMX File What You Want To Call>',NO_HIDE);
| Is This Answer Correct ? | 2 Yes | 1 No |
What is the difference between ON-VALIDATE-FIELD trigger and a POST-CHANGE trigger ?
Hi...... I created a report which is geneated in .txt format. What I do for this is 1.First I change the system parameter mode to character in the report. 2.Then I place a button in my form to call the report. code in the button is as follows.. DECLARE rePid REPORT_OBJECT; rep_hndl VARCHAR2(100); BEGIN rePid := Find_Report_Object('reptxt.rdf'); Set_Report_Object_Property(rePid,Report_deStype,FILE); Set_Report_Object_Property(rePid,Report_FileName,'d:\sasi\reports\reptxt.rdf'); Set_Report_Object_Property(rePid,Report_desName,'d:\sasi\output\repprint.txt'); rep_hndl := Run_Report_Object(rePid); END; and it is working.. Now the problam is that when I preview the report from the report builder, it is in the format I needed. But when I run the form and run the report,Its alligment is not correct. Regards abc
What are the built-ins used for Creating and deleting groups?
Please tell me what is wrong in the below query: (Very Urgent) ================================================= function BeforePForm return boolean is begin if :from_invoice_date is null OR :to_invoice_date is null then aiv.PERIOD_NMAE:=:gl_period elsif :gl_period is null then aiv.INVOICE_DATE between :from_invoice_date and :to_invoice_date end if; return (TRUE); end;
Why is a Where clause faster than a group filter or a format trigger?
Any attempt to navigate programatically to disabled form in a call_form stack is allowed?
What are the vbx controls?
How i call Reports from Forms10g.
What is a radio Group?
based on parameter value layout of report should change
What is a library in Forms 4.0?
what is sequence of execution of following triggers 1.when-validate-item 2.post-change 3.key-next-item 4.post-text-item