PROBLEM
The Browse toolbar is set to be invisible in the Default Configuration file (ArcPad.apx), but the Browse toolbar is displayed anyway.
For example, ArcPad.apx looks like:
<?xml version="1.0" encoding="UTF-8"?>
<ArcPad>
��<CONFIG>
����<TOOLBARS>
������<TOOLBAR name="main" visible="true"></TOOLBAR>
������<TOOLBAR name="browse" visible="false"></TOOLBAR>
������<TOOLBAR name="draw" visible="false"></TOOLBAR>
������<TOOLBAR name="Custom1" caption="Custom" visible="true">
��������<TOOLBUTTON command="modezoomin"></TOOLBUTTON>
������</TOOLBAR>
����</TOOLBARS>
��</CONFIG>
</ArcPad>
The Browse toolbar has been set to invisible either via the ToolBars dialog or the Tree View, and a custom toolbar was created.
Change the order of the TOOLBAR elements in ArcPad.apx such that the Browse toolbar is last.
For example:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<ArcPad>
<CONFIG>
<TOOLBARS>
<TOOLBAR name="main" visible="true"></TOOLBAR>
<TOOLBAR name="draw" visible="false"></TOOLBAR>
<TOOLBAR name="Custom1" caption="Custom" visible="true">
<TOOLBUTTON command="modezoomin"></TOOLBUTTON>
</TOOLBAR>
<TOOLBAR name="browse" visible="false"></TOOLBAR>
</TOOLBARS>
</CONFIG>
</ArcPad>
Article ID:000005157
Get help from ArcGIS experts
Download the Esri Support App