PROBLEM

Browse toolbar displays when visible="false" in ArcPad.apx

Last Published: April 25, 2020

Description

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>

Cause

The Browse toolbar has been set to invisible either via the ToolBars dialog or the Tree View, and a custom toolbar was created.

Solution or Workaround



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

Software:
  • Legacy Products

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options

Discover more on this topic