<?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 Hide statusbar messages when geoprocessing in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43345#M1122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using ArcObjects and VB.NET I have a routine that does several geoprocessing functions. These processes are built by ESRI to send messages to the ArcMap statusbar. That seems to over-ride my custom messages and progressbar. Is there a way to supress the geoprocessing messages sent to the statusbar?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2020 22:14:38 GMT</pubDate>
    <dc:creator>AbelPerez</dc:creator>
    <dc:date>2020-03-11T22:14:38Z</dc:date>
    <item>
      <title>Hide statusbar messages when geoprocessing</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43345#M1122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using ArcObjects and VB.NET I have a routine that does several geoprocessing functions. These processes are built by ESRI to send messages to the ArcMap statusbar. That seems to over-ride my custom messages and progressbar. Is there a way to supress the geoprocessing messages sent to the statusbar?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2020 22:14:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43345#M1122</guid>
      <dc:creator>AbelPerez</dc:creator>
      <dc:date>2020-03-11T22:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statusbar messages when geoprocessing</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43346#M1123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't experience the issues you are describing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which geo-processing tools are you calling and how are you calling them? Some example code would help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment you have asked a very general question, showing us nothing, no one is going to be able to answer this question...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 10:13:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43346#M1123</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2020-04-08T10:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statusbar messages when geoprocessing</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43347#M1124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any gp really. I see it quite a bit on Clip. So code looks like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'initialize the geoprocessor.&lt;BR /&gt; Dim GP As GeoProcessor = New GeoProcessor&lt;BR /&gt; GP.AddOutputsToMap = False&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'create an IVariantArray to hold the parameter values.&lt;BR /&gt; Dim parameters As IVariantArray = New VarArray&lt;/P&gt;&lt;P&gt;parameters.Add(inSurfaceFullName) 'input surface&lt;BR /&gt; parameters.Add("") '&lt;/P&gt;&lt;P&gt;parameters.Add(outClippedRasterFullName)&lt;BR /&gt;parameters.Add(inClippingPolyFullName)&lt;BR /&gt; parameters.Add("")&amp;nbsp;&lt;BR /&gt; parameters.Add("ClippingGeometry")&amp;nbsp;&lt;BR /&gt; parameters.Add("NO_MAINTAIN_EXTENT")&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'execute the model tool by name.&lt;BR /&gt; Dim res As IGeoProcessorResult = GP.Execute("Clip_management", parameters, Nothing)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As this is processing the output messages get sent to the status bar and seem to overwrite what I wrote there manually.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2020 21:02:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43347#M1124</guid>
      <dc:creator>AbelPerez</dc:creator>
      <dc:date>2020-04-16T21:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statusbar messages when geoprocessing</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43348#M1125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting, that is how I tend to call geo-processing tools in ArcObjects although I would set up the GeoProcessor as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Dim pgp &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; IGeoProcessor
pgp &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;GeoProcessor&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't get any of the messages on the statusbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:39:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43348#M1125</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2021-12-10T21:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hide statusbar messages when geoprocessing</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43349#M1126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I set a status message before I run the gp tool&lt;/P&gt;&lt;P&gt;&amp;nbsp;MyApp.StatusBar.Message(0) = "Clipping raster with " &amp;amp; inClippingPolyFullName &amp;amp; "..."&lt;/P&gt;&lt;P&gt;Then after the gp tool finishes it has cleared my message. Most times its ok but I am running some loops and its useful for the user to see what is happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see what you are saying about setting up the gp object. However, every sample on the ESRI site Ive seen shows it as I have posted&amp;nbsp;&lt;A class="link-titled" href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000001qn000000" title="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000001qn000000"&gt;ArcObjects 10 .NET SDK Help&lt;/A&gt;&amp;nbsp;. Not sure what the difference is though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2020 14:26:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/hide-statusbar-messages-when-geoprocessing/m-p/43349#M1126</guid>
      <dc:creator>AbelPerez</dc:creator>
      <dc:date>2020-04-17T14:26:18Z</dc:date>
    </item>
  </channel>
</rss>

