Is there a way to disable the top menu on data entry application (CSentry mode)? I would love to know how to so that keyers don't have to click things they are not allowed to.
Mutua
Disable Data Entry Menu
-
kakinyim
- Posts: 42
- Joined: January 16th, 2012, 6:38 am
- Location: Remote/Virtual
Disable Data Entry Menu
You do not have the required permissions to view the files attached to this post.
-
josh
- Posts: 2403
- Joined: May 5th, 2014, 12:49 pm
- Location: Washington DC
Re: Disable Data Entry Menu
Mutua - as of version 6.0 you can add "FullScreen=NoMenus" to the DataEntryInit section of the .pff file to hide the menus.
-
kakinyim
- Posts: 42
- Joined: January 16th, 2012, 6:38 am
- Location: Remote/Virtual
Re: Disable Data Entry Menu
Thanks Josh, it worked so nicely. I will only have to figure-out how to close a "FullScreen=NoMenus" screen.josh wrote:Mutua - as of version 6.0 you can add "FullScreen=NoMenus" to the DataEntryInit section of the .pff file to hide the menus.
Mutua
-
josh
- Posts: 2403
- Joined: May 5th, 2014, 12:49 pm
- Location: Washington DC
Re: Disable Data Entry Menu
Yes - if you forget the keyboard shortcuts that can be difficult. Ctrl+S to stop data entry followed by Alt+F4 to exit from the case listing screen.
A nicer way is to add a userbar button that calls stop(1):
A nicer way is to add a userbar button that calls stop(1):
function quit()
if accept("Are you sure you want to quit?", "Yes", "No") = 1 then
stop(1);
endif;
end;
PROC MYAPP_FF
preproc
userbar(add button, "Quit", quit());
userbar(show);
if accept("Are you sure you want to quit?", "Yes", "No") = 1 then
stop(1);
endif;
end;
PROC MYAPP_FF
preproc
userbar(add button, "Quit", quit());
userbar(show);