ArcPad 8 and 10 display the ArcPad QuickAction toolbutton, which has a menu that includes an Exit command. I need to disable the QuickAction tool button or, if possible, the Exit menu item in a VBScript applet. I'm disabling other ArcPad toolbars in the applet using the following code:
Application.Toolbars("Main").Visible = False
I tried to disable the QuickAction tool button with the followingline but it threw a script error:
Application.ToolItem("QuickAction").Enabled=False
Is it possible to disable the QuickAction toolbutton in VBScript? Can it be done for both ArcPad 8 and 10?