///<summary> /// Goes to the Shapefiles's DBF Information Window /// </summary> protected virtual void OnDbfInfo(object sender, EventArgs e) { ShapeFileInfoDlg sfid = new ShapeFileInfoDlg(dbfPath, dbfIsInZip); sfid.Show(); }
private void ShowShapeInfo(object sender, EventArgs e) { ShapeFileInfoDlg sfid = new ShapeFileInfoDlg(m_ShapeFilePath.Replace(".shp", ".dbf"), false); sfid.Show(); }
///<summary> /// Goes to the Shapefiles's DBF Information Window /// </summary> public void GetDbfInfo() { ShapeFileInfoDlg sfid = new ShapeFileInfoDlg(dbfPath, dbfIsInZip); sfid.Show(); }