<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: browing FGDB - help needed in File Geodatabase API Questions</title>
    <link>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656129#M1060</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The File Geodatabase API only works with 10.0 or later File Geodatabases.Since you are using ArcEngine you should use ArcObjects. Take a look at IWorkspace.DatasetNames.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Mar 2011 14:49:27 GMT</pubDate>
    <dc:creator>LanceShipman</dc:creator>
    <dc:date>2011-03-21T14:49:27Z</dc:date>
    <item>
      <title>browing FGDB - help needed</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656126#M1057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We have an issue regarding browsing a FGDB to view its contents. We are trying to open a FGDB using Folder dialog box. But we are unable to view the standalone tables inside the database.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;to put is simply, if you use "ADD DATA" button in ArcGIS you can go inside a FGDB and view different data objects (Feature classes, Feature Datasets, table etc.). We want a similar method to via a folder dialog box.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2011 03:01:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656126#M1057</guid>
      <dc:creator>sujaygarapati</dc:creator>
      <dc:date>2011-03-18T03:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: browing FGDB - help needed</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656127#M1058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi,&lt;BR /&gt;We have an issue regarding browsing a FGDB to view its contents. We are trying to open a FGDB using Folder dialog box. But we are unable to view the standalone tables inside the database.&lt;BR /&gt;&lt;BR /&gt;to put is simply, if you use "ADD DATA" button in ArcGIS you can go inside a FGDB and view different data objects (Feature classes, Feature Datasets, table etc.). We want a similar method to via a folder dialog box.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Toe accomplish this you should be using the Geodatabase::GetChildDatasets member. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;geodatabase.GetChildDatasets(L"\\", L"Table", childList) will return all tables at the root.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;geodatabase.GetChildDatasets(L"\\", L"Feature Class", childList) will return all stand alone feature classes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;geodatabase.GetChildDatasets(L"\\", L"Feature Dataset", childList) will return all feature datasets.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;geodatabase.GetChildDatasets(L"\\USA", L"Feature Class", childList) will return all feature classes withing a feature dataset (USA in this example).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2011 17:06:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656127#M1058</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2011-03-18T17:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: browing FGDB - help needed</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656128#M1059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;dear lance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for the reply, however i would like to tell you a little more about the application we are currently working on. We are building an Engine application using Arc Engine 9.3 &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;can the solution you gave work in this situation?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;would be very thankful for you insights in this matter..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 04:10:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656128#M1059</guid>
      <dc:creator>sujaygarapati</dc:creator>
      <dc:date>2011-03-21T04:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: browing FGDB - help needed</title>
      <link>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656129#M1060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The File Geodatabase API only works with 10.0 or later File Geodatabases.Since you are using ArcEngine you should use ArcObjects. Take a look at IWorkspace.DatasetNames.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 14:49:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/file-geodatabase-api-questions/browing-fgdb-help-needed/m-p/656129#M1060</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2011-03-21T14:49:27Z</dc:date>
    </item>
  </channel>
</rss>

