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
keep showing system menus(configure profiles, close forms, product info) all the time
-
MegumiSawada
- Posts: 268
- Joined: Tue Feb 19, 2013 5:18 pm
keep showing system menus(configure profiles, close forms, product info) all the time
- Attachments
-
- system menus.png (30.94 KiB) Viewed 3957 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
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
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
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).
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
Hi Tony,
Thank you!
I'll try it.
Best Regargds,
Megumi Sawada
Thank you!
I'll try it.
Best Regargds,
Megumi Sawada