<?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: Viewing Blob Data in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746308#M19837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes, that's what I'm suggesting. What do you want to do with the contents of the blob?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok, thanks for the quick response! That's fine. I just need to be able to view the contents, so it seemed like a long way around a short stick. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's a 1 to N relationship between feature and Blob entries. Therefore, click on feature, run macro, view many blobs of text stored in a standalone table in the same map as the feature class. So I'll have to append the blob entries to the file each time. Ugly. I may do it once, so I don't have to constantly open/write/read files.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Aug 2010 18:51:30 GMT</pubDate>
    <dc:creator>PaigeBaldassaro</dc:creator>
    <dc:date>2010-08-19T18:51:30Z</dc:date>
    <item>
      <title>Viewing Blob Data</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746304#M19833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a Blob field containing text. I can retrieve the data via IMemoryBlobStream2, but do not know how to view the content. Anyone out there know how to view Blob text content?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 16:18:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746304#M19833</guid>
      <dc:creator>PaigeBaldassaro</dc:creator>
      <dc:date>2010-08-19T16:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing Blob Data</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746305#M19834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;IMemoryBlobStream::SaveToFile is the easiest way.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 16:30:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746305#M19834</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2010-08-19T16:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing Blob Data</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746306#M19835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;IMemoryBlobStream::SaveToFile is the easiest way.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I have to save to file, then open the file and read it? Is that what you are suggesting? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can do that. Just seems wasteful, so I wanted to clarify.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 17:52:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746306#M19835</guid>
      <dc:creator>PaigeBaldassaro</dc:creator>
      <dc:date>2010-08-19T17:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing Blob Data</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746307#M19836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, that's what I'm suggesting. What do you want to do with the contents of the blob?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 17:59:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746307#M19836</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2010-08-19T17:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing Blob Data</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746308#M19837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes, that's what I'm suggesting. What do you want to do with the contents of the blob?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok, thanks for the quick response! That's fine. I just need to be able to view the contents, so it seemed like a long way around a short stick. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's a 1 to N relationship between feature and Blob entries. Therefore, click on feature, run macro, view many blobs of text stored in a standalone table in the same map as the feature class. So I'll have to append the blob entries to the file each time. Ugly. I may do it once, so I don't have to constantly open/write/read files.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Aug 2010 18:51:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/viewing-blob-data/m-p/746308#M19837</guid>
      <dc:creator>PaigeBaldassaro</dc:creator>
      <dc:date>2010-08-19T18:51:30Z</dc:date>
    </item>
  </channel>
</rss>

