Discussions
Activity
Best Of...
Sign In
·
Register
Home
›
NAV/Navision Classic Client
Howdy, Stranger!
It looks like you're new here. Sign in or register to get started.
Sign In
Register
Quick Links
Categories
Recent Discussions
Activity
Best Of...
Unanswered
Categories
All Categories
73
General
73
Announcements
66.6K
Microsoft Dynamics NAV
18.7K
NAV Three Tier
38.4K
NAV/Navision Classic Client
3.6K
Navision Attain
2.4K
Navision Financials
116
Navision DOS
851
Navision e-Commerce
1K
NAV Tips & Tricks
772
NAV Dutch speaking only
617
NAV Courses, Exams & Certification
2K
Microsoft Dynamics-Other
1.5K
Dynamics AX
320
Dynamics CRM
111
Dynamics GP
10
Dynamics SL
1.5K
Other
990
SQL General
383
SQL Performance
34
SQL Tips & Tricks
35
Design Patterns (General & Best Practices)
1
Architectural Patterns
10
Design Patterns
5
Implementation Patterns
53
3rd Party Products, Services & Events
1.6K
General
1K
General Chat
1.6K
Website
83
Testing
1.2K
Download section
23
How Tos section
252
Feedback
12
NAV TechDays 2013 Sessions
13
NAV TechDays 2012 Sessions
Options
Mute
under what circumstances i can run modally
shafeaa
Member
Posts:
54
2005-03-23
edited 2005-03-24
in
NAV/Navision Classic Client
hi
under what circumstances i can run modly if the Report in run time?
ithink its corresponding to request form but i dont know how.
0
Comments
Sbhat
Member
Posts:
301
2005-03-24
Normally RUNMODAL is useful in FORMS and Reports.
In Forms you use it when you want to accept a value from a form. For example
IF Form.runmodal(Form::<FormName>,Rec) = Action::LookupOk then
<field> := Rec.<Field Value>
In Report you use it when you want to run a report using a printer selection or directing a report to a specific devic.
Before using a Runmodal you must use the COMMIT syntax, otherwise you cannot run the form or report in Run modal.
SB.
0
lubost
Member
Posts:
632
2005-03-24
It's true. The second difference is: When you run object modally, your code will wait for closing called object, but nonmodal calling calls the object and your code will continue on next line.
0
Sign In
or
Register
to comment.
Comments
In Forms you use it when you want to accept a value from a form. For example
IF Form.runmodal(Form::<FormName>,Rec) = Action::LookupOk then
<field> := Rec.<Field Value>
In Report you use it when you want to run a report using a printer selection or directing a report to a specific devic.
Before using a Runmodal you must use the COMMIT syntax, otherwise you cannot run the form or report in Run modal.
SB.