<?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: Cut polygons without selection edit task for arcmap v10 sp3 in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449012#M12184</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: johns&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Excellent!&amp;nbsp; It works either with the feature templates or with my customized classic editing in 10.1.&amp;nbsp; Thank you very much Sean.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jun 2012 12:22:42 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2012-06-29T12:22:42Z</dc:date>
    <item>
      <title>Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449004#M12176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bwragg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've spent days now trying to get the "Cut polygons without selection" sample (&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/Sample_Cut_polygons_without_selection_edit_task/000100000077000000/" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/Sample_Cut_polygons_without_selection_edit_task/000100000077000000/&lt;/A&gt;&lt;SPAN&gt;) to work with ArcMap v10 sp3 (ArcView). We need this extension so we can trace selected features without selecting the polygon we want to split. I know what your going to say..."just use the normal 'Cut polygon tools' with the new trace tool that doesn't require to select features' but we can't use this tool as we have really complex data and we have to trace long distances. As a result when we have tested the new 'trace without a selection' feature we end up accidentally tracing many small features. Hence we would like to get this old sample working.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not a vb developer but with some help from a developer I've downloaded the vb.net solution and compiled it. I've run ESRIRegAsm, select Desktop and it succeeds in registering it. I've checked the dependancies with dependancy walker and its all good. I've checked the Components.exe program and I can see it registers itself under "ESRI Engine Edit Tasks" but not under "ESRI Edit Tasks" which is the spot you would put it in 9.3 and 9.2. When I run ArcMap I can't see the task 'Cut Polygon without selection' in the task list. I assume this is because its not added in the Components.exe under "ESRI Edit Tasks". If I manually try to add it throws an error saying 'Can't Load Library'. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So is there a way to get this sample to compile and install so that it runs as a task in the normal Editor toolbar in ArcMap? Or have I missed some readme that explains this sample is only available in the Engine?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also is there a reason ESRI doens't compile this as a dll like they used to for previous versions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;bwragg&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 07:16:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449004#M12176</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-02-17T07:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449005#M12177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: agray1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason you can't use this sample in ArcMap is that it is made for engine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Implements ESRI.ArcGIS.Controls.&lt;STRONG&gt;IEngineEditTask&lt;/STRONG&gt;

 Private Shared Sub ArcGISCategoryRegistration(ByVal registerType As Type)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim regKey As String = String.Format("HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID)
&amp;nbsp;&amp;nbsp;&amp;nbsp; EngineEditTasks.Register(regKey)

&amp;nbsp; End Sub
&amp;nbsp; ''' &amp;lt;summary&amp;gt;
&amp;nbsp; ''' Required method for ArcGIS Component Category unregistration -
&amp;nbsp; ''' Do not modify the contents of this method with the code editor.
&amp;nbsp; ''' &amp;lt;/summary&amp;gt;
&amp;nbsp; Private Shared Sub ArcGISCategoryUnregistration(ByVal registerType As Type)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim regKey As String = String.Format("HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;EngineEditTasks&lt;/STRONG&gt;.Unregister(regKey)

...

#Region "Private Members"
&amp;nbsp; Private m_engineEditor As &lt;STRONG&gt;IEngineEditor&lt;/STRONG&gt;
&amp;nbsp; Private m_editSketch As &lt;STRONG&gt;IEngineEditSketch&lt;/STRONG&gt;
&amp;nbsp; Private m_editLayer As &lt;STRONG&gt;IEngineEditLayers&lt;/STRONG&gt;
#End Region


&amp;nbsp; End Sub&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could try to use the ArcGIS developer templates (installed with the arcgis developer kit) to create an ArcMap edit task and copy the code (not all the code, just the methods that make up the interface) and the member variables.&amp;nbsp; You would have to convert all the classes specific to engine to the a similar class specific to ArcMap.&amp;nbsp; Probably a task that an ArcObjects developer could undertake.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:03:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449005#M12177</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T20:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449006#M12178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bwragg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The reason you can't use this sample in ArcMap is that it is made for engine.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Implements ESRI.ArcGIS.Controls.&lt;STRONG&gt;IEngineEditTask&lt;/STRONG&gt;

 Private Shared Sub ArcGISCategoryRegistration(ByVal registerType As Type)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim regKey As String = String.Format("HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID)
&amp;nbsp;&amp;nbsp;&amp;nbsp; EngineEditTasks.Register(regKey)

&amp;nbsp; End Sub
&amp;nbsp; ''' &amp;lt;summary&amp;gt;
&amp;nbsp; ''' Required method for ArcGIS Component Category unregistration -
&amp;nbsp; ''' Do not modify the contents of this method with the code editor.
&amp;nbsp; ''' &amp;lt;/summary&amp;gt;
&amp;nbsp; Private Shared Sub ArcGISCategoryUnregistration(ByVal registerType As Type)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim regKey As String = String.Format("HKEY_CLASSES_ROOT\CLSID\{{{0}}}", registerType.GUID)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;EngineEditTasks&lt;/STRONG&gt;.Unregister(regKey)

...

#Region "Private Members"
&amp;nbsp; Private m_engineEditor As &lt;STRONG&gt;IEngineEditor&lt;/STRONG&gt;
&amp;nbsp; Private m_editSketch As &lt;STRONG&gt;IEngineEditSketch&lt;/STRONG&gt;
&amp;nbsp; Private m_editLayer As &lt;STRONG&gt;IEngineEditLayers&lt;/STRONG&gt;
#End Region


&amp;nbsp; End Sub&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;You could try to use the ArcGIS developer templates (installed with the arcgis developer kit) to create an ArcMap edit task and copy the code (not all the code, just the methods that make up the interface) and the member variables.&amp;nbsp; You would have to convert all the classes specific to engine to the a similar class specific to ArcMap.&amp;nbsp; Probably a task that an ArcObjects developer could undertake.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks agray, I had an feeling that might be the answer I got. Guess we'll have to start trying to convert the code. Thanks again for your time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sure I'm not the first person who's had to do this...anyone out there got a compiled dll already???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:03:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449006#M12178</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T20:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449007#M12179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Ben,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know that this thread has been for awhile, were you be able to re-create this tool?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 13:03:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449007#M12179</guid>
      <dc:creator>ThaiTruong</dc:creator>
      <dc:date>2012-06-14T13:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449008#M12180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bwragg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Ben,&lt;BR /&gt;&lt;BR /&gt;I know that this thread has been for awhile, were you be able to re-create this tool?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, Sorry for the late reply, no I haven't been able to re-create this tool but would love to hear any information you may have on this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;bwragg&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2012 23:54:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449008#M12180</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-06-26T23:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449009#M12181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I found this to be an essential tool in 9x since it: 1. allowed cutting without having to select a polygon (saving the time and clicks involved in changing to the select tool, making a selection and then changing back to the sketch tool), and 2. it allowed cutting using selected features and the trace tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would still like this tool in 10x.&amp;nbsp; I went through a lot of the same wasted effort with the developer sample before finding out it was only for Engine.&amp;nbsp; It could avoid the selection clicks when using a sketch to cut a polygon.&amp;nbsp; As for using the trace tool, in 10x the cut polygon tool combined with the trace tool is really nice, but tracing can be difficult in places where there are many features at the scale one is editing.&amp;nbsp; So in 10x I'd like both the built in and the cut without selecting versions, and in both have the ability to use 10's trace without selecting, or to use 9's trace using only the selected features for more control.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2012 20:00:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449009#M12181</guid>
      <dc:creator>JohnSobetzer</dc:creator>
      <dc:date>2012-06-27T20:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449010#M12182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: sean_jones&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll take a crack at the conversion and post it up on &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/group.html?owner=Doug&amp;amp;title=Editing%20Labs"&gt;editing labs&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the meantime you can:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Union the selected set of lines you would have traced, into an empty temporary layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Using the cut polygon tool, replace the sketch with the line you just unioned.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2012 21:20:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449010#M12182</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-06-27T21:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449011#M12183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, the ported sample is up on arcgis.com as the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.arcgis.com/home/item.html?id=7b85e55be2ab46318cc8a7089f168718" rel="nofollow" target="_blank"&gt;Cut Polygons Without Selection Tool code sample&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a visual studio 2010 project that will create a 10.1 desktop add-in for use in ArcMap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code is included so you can generally see the pattern for creating edit tools that use the sketch in the 10.x framework.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The tool was created using the esri add-in templates in visual studio by creating a construction tool but without the category part, thus you still get an edit tool template that uses the sketch but without it being a construction tool. The code from the OnFinishSketch method in the engine edit task was then ported to the OnSketchFinished method in the add-in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can create COM dll for use in 10.0.x using the same pattern but by using the Desktop ArcMap Edit Tool template in the ArcGIS New Item wizard when creating a new class in your com dll project. Stick the code in the m_editEvents_OnSketchFinished method. Note that this has to be a com dll at 10.0.x because add-ins do not support implementing interfaces until 10.1, and you need to implement ISketchTool to use the sketch. Consider changing the ArrayList to generics and use a different method for the sketch-polygon intersection if you take this on.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2012 16:21:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449011#M12183</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-06-28T16:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449012#M12184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: johns&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Excellent!&amp;nbsp; It works either with the feature templates or with my customized classic editing in 10.1.&amp;nbsp; Thank you very much Sean.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 12:22:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449012#M12184</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-06-29T12:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449013#M12185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Attached is a COM component version of this tool allows us to create sketch of cut line by using other sketch tools like: Right Angle, Arc, End Point Arc, Tangent Curve, &amp;amp; Bezier Curve.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]15790[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To use:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Install this tool&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Start Editing from Editor toolbar.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Select a polygon feature class that you want to edit.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Select Cut Polygons Without Selection tool from Construction Tools.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. Sketch on map to create a line that cuts through the original polygon(s) as desired.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6. You can create your sketch with any Feature Construction (straight lines, with curves, or tracing from the shapes of other features) to place vertices in the sketch. Youâ??ll be able to use snap, too.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;7. Double click, press F2 key, or Right-click anywhere on the map and choose Finish Sketch to complete you cut line.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2012 16:15:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449013#M12185</guid>
      <dc:creator>ThaiTruong</dc:creator>
      <dc:date>2012-07-05T16:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449014#M12186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: rbonar&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using 10.1. I tired to install the tool, but get a message saying I need to install version 10. Can we get the tool to work with 10.1?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 15:17:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449014#M12186</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-07-30T15:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449015#M12187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bwragg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;sean_jones &amp;amp; ttruong thankyou so much! I just tried the compiled version in 10 sp5 and it works great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We really appreciate your efforts. Thanks again.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2012 19:45:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449015#M12187</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-08-12T19:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449016#M12188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm using 10.1. I tired to install the tool, but get a message saying I need to install version 10. Can we get the tool to work with 10.1?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With ArcGIS Desktop v10.1, you need to use the addin that sean_jones created in &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/50866-Cut-polygons-without-selection-edit-task-for-arcmap-v10-sp3?p=211171&amp;amp;viewfull=1#post211171"&gt;post # 8&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2012 16:05:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449016#M12188</guid>
      <dc:creator>ThaiTruong</dc:creator>
      <dc:date>2012-08-27T16:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449017#M12189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: rbonar&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;With ArcGIS Desktop v10.1, you need to use the addin that sean_jones created in &lt;A href="http://forums.arcgis.com/threads/50866-Cut-polygons-without-selection-edit-task-for-arcmap-v10-sp3?p=211171&amp;amp;viewfull=1#post211171"&gt;post # 8&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks. My problem is I don't understand how to install it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 14:38:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449017#M12189</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-09-13T14:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449018#M12190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks. My problem is I don't understand how to install it.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I also do not know how to proceed with installing on 10.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have previously registered the .dll and added this in 9.3.x, but I cannot find "esriRegSvr32.exe" in Program Files\ArcGIS\Bin for 10.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Am I missing a step?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;These are the instructions I wrote for myself for a 9.3.x install, perhaps someone can tell me where I am going wrong.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Download and save correctly&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;1.Download and unzip your add in to a file location you desire.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.Open the location and find the .dll file containing the name of your add-in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.Save a copy at :/Program Files/ArcGIS/Bin&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Register the .dll&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;1.Open Windows Explorer and navigate to C:\Program Files\ArcGIS\Bin. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.Find �??esriRegSvr32.exe�?� and run it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.Check the �??Register Files�?� and �??Individual File�?� boxes, then click "select". &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.Find your .dll in the ArcGIS\Bin folder, then hit OK. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Add your .dll to the ArcGIS edit tasks&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;1.Open Windows Explorer and navigate to C:\Program Files\ArcGIS\Bin. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.Find �??categories.exe�?� and run it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.Scroll to the folder �??ESRI Edit Tasks�?�, select it, then click �??Add Object.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4.Navigate to C:\Program Files\ArcGIS\Bin and select your .dll.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Verify&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;1.Start an edit session and see if the new tool is available in the Task dropdown. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.If not, open the Editor Properties dialog; at Editor / Options / Edit Tasks. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.Select the Add button and click on the Desired add in. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4.This should add the "Zipper task" or "Cut polygon without selection" to the list of tasks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-style:italic;"&gt;&lt;STRONG&gt;I retract my previous inquiry on how to install on 10.1.&lt;BR /&gt;&lt;BR /&gt;I used "the force" and figured it out; actually pretty easy, easier than in 9.3.x&lt;BR /&gt;&lt;BR /&gt;Just double click on "CutPolygonsWithoutSelection.esriAddIn" that comes in the zip file.&lt;BR /&gt;&lt;BR /&gt;Then simply add it by the same way you add any tool to the toolbar.&lt;BR /&gt;&lt;BR /&gt;Thanks for making it! &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2012 19:19:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449018#M12190</guid>
      <dc:creator>JasonJohnson</dc:creator>
      <dc:date>2012-11-06T19:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449019#M12191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: ttruong&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's been quite a while since I was here.&amp;nbsp; The attached is the new deployment package of the COM component version I just recompile today.&amp;nbsp; I modified the launch conditions to make it works for both ArcGIS 10.0 and 10.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For those who have trouble installing the add-in for 10.1, you can try this COM component version.&amp;nbsp; It should be as same as the add-in version that Sean Jones created for 10.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if you run into any troubles with the installer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2012 11:47:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449019#M12191</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-11-08T11:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449020#M12192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: bwragg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;It's been quite a while since I was here.&amp;nbsp; The attached is the new deployment package of the COM component version I just recompile today.&amp;nbsp; I modified the launch conditions to make it works for both ArcGIS 10.0 and 10.1.&lt;BR /&gt;&lt;BR /&gt;For those who have trouble installing the add-in for 10.1, you can try this COM component version.&amp;nbsp; It should be as same as the add-in version that Sean Jones created for 10.1.&lt;BR /&gt;&lt;BR /&gt;Let me know if you run into any troubles with the installer.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi ttruong,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just tried installing this on a new install of ArcGIS 10 sp5 and I get an error after clicking "install". It says "ArcGIS Desktop 10.0 or 10.1 is required before you can complete this setup". Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;bwragg&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 21:44:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449020#M12192</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-04-03T21:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449021#M12193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Ok, the ported sample is up on arcgis.com as the &lt;A href="http://www.arcgis.com/home/item.html?id=7b85e55be2ab46318cc8a7089f168718"&gt;Cut Polygons Without Selection Tool code sample&lt;/A&gt;.&lt;BR /&gt;This is a visual studio 2010 project that will create a 10.1 desktop add-in for use in ArcMap.&lt;BR /&gt;&lt;BR /&gt;The code is included so you can generally see the pattern for creating edit tools that use the sketch in the 10.x framework.&lt;BR /&gt;The tool was created using the esri add-in templates in visual studio by creating a construction tool but without the category part, thus you still get an edit tool template that uses the sketch but without it being a construction tool. The code from the OnFinishSketch method in the engine edit task was then ported to the OnSketchFinished method in the add-in.&lt;BR /&gt;&lt;BR /&gt;You can create COM dll for use in 10.0.x using the same pattern but by using the Desktop ArcMap Edit Tool template in the ArcGIS New Item wizard when creating a new class in your com dll project. Stick the code in the m_editEvents_OnSketchFinished method. Note that this has to be a com dll at 10.0.x because add-ins do not support implementing interfaces until 10.1, and you need to implement ISketchTool to use the sketch. Consider changing the ArrayList to generics and use a different method for the sketch-polygon intersection if you take this on.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello , i try to download your source code in the link above but it says that i don't have authorisation to see this content. I'm logged with my esri global account... Any tips ? Thx&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 18:53:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449021#M12193</guid>
      <dc:creator>MathieuBeaudry</dc:creator>
      <dc:date>2014-03-25T18:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cut polygons without selection edit task for arcmap v10 sp3</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449022#M12194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: sean_jones&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry about that, I've shared it publicly. We're reorganizing those editing labs samples.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 13:52:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/cut-polygons-without-selection-edit-task-for/m-p/449022#M12194</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-03-26T13:52:01Z</dc:date>
    </item>
  </channel>
</rss>

