Page 1 of 1
Disable Data Entry Menu
Posted: April 21st, 2015, 8:53 am
by kakinyim
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
Re: Disable Data Entry Menu
Posted: April 24th, 2015, 3:15 pm
by josh
Mutua - as of version 6.0 you can add "FullScreen=NoMenus" to the DataEntryInit section of the .pff file to hide the menus.
Re: Disable Data Entry Menu
Posted: April 27th, 2015, 4:51 pm
by kakinyim
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.
Thanks Josh, it worked so nicely. I will only have to figure-out how to close a "FullScreen=NoMenus" screen.
Mutua
Re: Disable Data Entry Menu
Posted: April 27th, 2015, 9:06 pm
by josh
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):
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);