keep showing system menus(configure profiles, close forms, product info) all the time

Please do not use to report errors- use your regional help desk.
Please mark posts as being for RPG or RDMLX (LANSA) developer.
To subscribe by email, display this forum, scroll to the end and select ‘Subscribe Forum’.
Post Reply
MegumiSawada
Posts: 268
Joined: Tue Feb 19, 2013 5:18 pm

keep showing system menus(configure profiles, close forms, product info) all the time

Post by MegumiSawada »

Hi,

Is there any way to keep showing system menus(configure profiles, close forms, product info) all the time in LongRange client app?
I believe these are shown in the bottom of navigation menus, but I would like to show these in the bottom of snap-ins too.

I appreciate your kind advice.

Best Regards,
Megumi
Attachments
system menus.png
system menus.png (30.94 KiB) Viewed 3958 times
MegumiSawada
Posts: 268
Joined: Tue Feb 19, 2013 5:18 pm

Re: keep showing system menus(configure profiles, close forms, product info) all the time

Post by MegumiSawada »

Sorry, we need to show these system menus "ALL THE TIME", but would like to know how to show it programmatically if there's a way.

Thanks in Advance!

Megumi
tsupartono
Posts: 289
Joined: Wed Apr 18, 2012 10:21 am

Re: keep showing system menus(configure profiles, close forms, product info) all the time

Post by tsupartono »

Megumi,
There is no way to exactly do what you want, but with some effort, you can achieve the required functionality.

Your form programs can be written in such a way that would include a panel of buttons at the bottom (the buttons are the system menu items, such as Settings, Refresh etc).
You would then use the ClientCommand operation to invoke the required operations (Settings, Refresh etc).

Code: Select all

          LRNG_Using('/Form.Fields.SettingsButton.OnClick.Operation');
          LRNG_SetProperty('Type' : 'ClientCommand');
          LRNG_SetProperty('Command' : 'Settings');
          LRNG_EndUsing();
MegumiSawada
Posts: 268
Joined: Tue Feb 19, 2013 5:18 pm

Re: keep showing system menus(configure profiles, close forms, product info) all the time

Post by MegumiSawada »

Hi Tony,

Thank you!
I'll try it.

Best Regargds,
Megumi Sawada
Post Reply