Is their a simple way to disable features of the client, such as new record.
I have hidden the toolbars, but they can still use the menus.
Is their a JAVA way of doing this?
David
Is their a simple way to disable features of the client, such as new record.
I have hidden the toolbars, but they can still use the menus.
Is their a JAVA way of doing this?
David
in the properties of a form, you can set all those commands to: none.
Hope this helps
Or you can go the whole way and get rid of the Menus and the Toolbars:
plugins.kioskmode.setMenuVisible(false); //will have no effect in developer
plugins.kioskmode.setToolBarVisible(false);
Thanks Guys,
Servoy is great its just sometimes it takes you hours to try and work out where a simple function is!
Both great suggestion, the later being easier now i have finished my solution!
David