Run Form with parameters
Gavrila
Member Posts: 12
Hi all. I have a form and i want to run (pass) it with some parameters. Another words I want to change properties in form depending on external data. It is possible in NAV?
0
Comments
-
yes, that is possible. Create some functions in the form with which you pass your parameters into global variables of the form, and then run it using code.
Example : say you added a function SetHideControls ( value : boolean ) to form 50000.function HideControls ( Value : boolean ) begin HidecontrolsBoolean := value ; end ;
then in the OnOpenForm trigger ( and other places ) you can do something with that global :currform.someControl.visible := not(hidecontrols) ; ...
In the calling code declare a variable, type form, subtype 50000 and use the following code ( i called if f ) :clear(f) ; f.SetHideControls(true) ; f.run ; // or f.runmodal, whatever you want
in the form you can then do something with the value of0 -
MBerger wrote:yes, that is possible. Create some functions in the form with which you pass your parameters into global variables of the form, and then run it using code.
Example : say you added a function SetHideControls ( value : boolean ) to form 50000.function HideControls ( Value : boolean ) begin HidecontrolsBoolean := value ; end ;
then in the OnOpenForm trigger ( and other places ) you can do something with that global :currform.someControl.visible := not(hidecontrols) ; ...
In the calling code declare a variable, type form, subtype 50000 and use the following code ( i called if f ) :clear(f) ; f.SetHideControls(true) ; f.run ; // or f.runmodal, whatever you want
in the form you can then do something with the value of
Thank you for reply.
But I need to pass parameters and run form with a record variable.
Something like that.....
clear(f);
f.SetHideControls(true) ;
f.run(Rec);
But Forms can not be run as codeunits i.e. CodeunitVariable.RUN(Rec)
. 0 -
Have a look in the helpfile for functions like f.setrecord, f.settableview etc.Gavrila wrote:Thank you for reply.
But I need to pass parameters and run form with a record variable.
Something like that.....
clear(f);
f.SetHideControls(true) ;
f.run(Rec);
But Forms can not be run as codeunits i.e. CodeunitVariable.RUN(Rec)
.0 -
MBerger wrote:
Have a look in the helpfile for functions like f.setrecord, f.settableview etc.Gavrila wrote:Thank you for reply.
But I need to pass parameters and run form with a record variable.
Something like that.....
clear(f);
f.SetHideControls(true) ;
f.run(Rec);
But Forms can not be run as codeunits i.e. CodeunitVariable.RUN(Rec)
.
Thanks for help and quick reply in spite of stupid question.0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K 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
- 611 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 253 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions