Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM?
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM?
✍: Guest
CALL_FORM: start a new form and pass control to it. The parent form will be suspended until the called form is terminated. user can not navigate to parent form until child form is open.
NEW_FORM: terminate the current form and replace it with the indicated new form. The old form's resources (like cursors and locks) will be released. parent form will be closed.
OPEN_FORM: Opens the indicated new form without suspending or replacing the parent form.user can navigate between parent and child forms.
2011-03-29, 10678👍, 0💬
Popular Posts:
Which bit wise operator is suitable for turning on a particular bit in a number? The bitwise OR oper...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...
How To Give a User Read-Only Access to a Database? - MySQL FAQs - Managing User Accounts and Access ...