Hi
Just want to know if it is possible to have a single fullscreen screen wrapper displayed when executing a Form through RAMP. I don't want the Application and Business Objects section displayed:
Based on the example above, the red X means they shouldn't be displayed and the green tick means that is the only screen that must be shown upon launch, which is the screen wrapper.
Single FullScreen VLF-Win form
-
davidbalansa
- Posts: 92
- Joined: Mon Feb 01, 2016 10:08 am
Re: Single FullScreen VLF-Win form
Hi,
You can try this in your VLF-WIN framework:
- Create a single application with a single business level command handler. Remove everything else.
- In the User Imbedded Interface Point (IIP) component use the framework switch method to switch to your command handler in the avMainWindowReady method.
- In the framework properties set the 'Application navigation pane views' to 'Launch from status bar'
Hope this helps
You can try this in your VLF-WIN framework:
- Create a single application with a single business level command handler. Remove everything else.
- In the User Imbedded Interface Point (IIP) component use the framework switch method to switch to your command handler in the avMainWindowReady method.
- In the framework properties set the 'Application navigation pane views' to 'Launch from status bar'
Hope this helps
Re: Single FullScreen VLF-Win form
Hi David, thanks so much!
Can you explain more about what you mean:
- In the User Imbedded Interface Point (IIP) component use the framework switch method to switch to your command handler in the
avMainWindowReady method.
I found it in the Framework details:
Can you explain more about what you mean:
- In the User Imbedded Interface Point (IIP) component use the framework switch method to switch to your command handler in the
avMainWindowReady method.
I found it in the Framework details:
Re: Single FullScreen VLF-Win form
Can a reusable part(screen wrapper) be launched on Framework startups?
-
davidbalansa
- Posts: 92
- Joined: Mon Feb 01, 2016 10:08 am
Re: Single FullScreen VLF-Win form
Responding to your previous post.
You have located the User Imbedded Interface Point in the VLFWIN properties. Copy this component and replace the properties component name with your component.
In the avMAINWindowReady add code to switch to your application / command handler. The value will be specific to your internal identifiers used for your application and command handler.
Here are some links to the avSwitch method in the documentation:
https://docs.lansa.com/15/en/lansa048/i ... _1675.htm?
https://docs.lansa.com/15/en/lansa048/i ... _1690.htm?
Hope this helps.
You have located the User Imbedded Interface Point in the VLFWIN properties. Copy this component and replace the properties component name with your component.
In the avMAINWindowReady add code to switch to your application / command handler. The value will be specific to your internal identifiers used for your application and command handler.
Here are some links to the avSwitch method in the documentation:
https://docs.lansa.com/15/en/lansa048/i ... _1675.htm?
https://docs.lansa.com/15/en/lansa048/i ... _1690.htm?
Hope this helps.