private void btnHelp_Click(object sender, EventArgs e)
        {
            string HelpText = @"
            ** Instructions **

            The Straight-Line Tool is used to recalculate the distance of sightings' and horizons'
            to the closest segment on the transect they were observed. The tool may be run on all
            sightings and horizons for all surveys in the database or just a subset. To specify a
            subset, either:

                a. Create a selection of sightings and/or horizons which distance will be recalculated
                b. Specify a definition query on the animals (DB Animal) and/or the Horizon layer by
                   right-clicking on the layer and navigating to Properties-->Definition Query

            If a subset is not specified, then all sightings and horizons in the database will have
            their distance recalculated.

            After deciding which sightings will be processed, click 'Run' to begin the
            distance recalculation. ";

            using (HelpMessageForm form = new HelpMessageForm())
            {
                form.txtHelpMessage.Text = HelpText;
                form.ShowDialog();
            }
        }
        private void btnHelp_Click(object sender, EventArgs e)
        {
            string HelpText = @"
            ** Instructions **
            The Edit ArcPad Defaults Tool is used to edit the defaultvalues.dbf file used by ArcPad. The
            The defaultvalues.dbf file stores the options for the picklists found on the ArcPad sighting forms.
            The defaultvalues.dbf file is packaged with the Survey folder generated after an export. Any
            changes made now to the defaultvalues.dbf file will be included in the next export.";

            using (HelpMessageForm form = new HelpMessageForm())
            {
                form.txtHelpMessage.Text = HelpText;
                form.ShowDialog();
            }
        }