Page 1 of 1

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

Posted: Thu Jan 19, 2017 5:29 pm
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

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

Posted: Thu Jan 19, 2017 5:56 pm
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

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

Posted: Fri Jan 20, 2017 2:49 pm
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();

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

Posted: Fri Jan 20, 2017 4:10 pm
by MegumiSawada
Hi Tony,

Thank you!
I'll try it.

Best Regargds,
Megumi Sawada