Beispiel #1
0
        private void btnImg_Click(object sender, EventArgs e)
        {
            ESRI.ArcGIS.Catalog.IGxObjectFilter flt = new ESRI.ArcGIS.Catalog.GxFilterBasicTypesClass();
            string[] nm;
            string   wksPath = frmHlp.getPath(flt, out nm, false)[0];

            txtImgWks.Text = wksPath;
        }
Beispiel #2
0
        private void btnOutWks_Click(object sender, EventArgs e)
        {
            ESRI.ArcGIS.Catalog.IGxObjectFilter flt = new ESRI.ArcGIS.Catalog.GxFilterBasicTypesClass();
            string[] outName;
            string   outPath = frmHlp.getPath(flt, out outName, false)[0];

            txtOutWks.Text = outPath;
        }
Beispiel #3
0
 private void btnOutDir_Click(object sender, EventArgs e)
 {
     ESRI.ArcGIS.Catalog.IGxObjectFilter flt = new ESRI.ArcGIS.Catalog.GxFilterBasicTypesClass();
     string[] flNames;
     string[] flPath = frmHlp.getPath(flt, out flNames, false);
     if (flPath.Length > 0)
     {
         txtOutDir.Text = flPath[0];
     }
 }
Beispiel #4
0
 private void btnDir_Click(object sender, EventArgs e)
 {
     ESRI.ArcGIS.Catalog.IGxObjectFilter flt = new ESRI.ArcGIS.Catalog.GxFilterBasicTypesClass();
     inDirPath     = frmHelper.getPath(flt, out inDirName);
     txtInDir.Text = inDirPath[0];
 }