<?xml version="1.0" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">

	<channel>
		<title>JasonNewell.NET</title>
		<link>jasonnewell.net</link>
		<description>JasonNewell.NET</description>
		<language>en-US</language>
		<copyright>Copyright 2010 JasonNewell.NET</copyright>
		<webMaster>noreply@jasonnewell.net</webMaster>
		<item>
			<title>Creating StructuralFrame - SE20, VB6</title>
			<description>&lt;p&gt;I have following code:&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160; Set structFrames = asmDoc.StructuralFrames&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;Dim reqPaths(1 To 2) As Object&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Set reqPaths(1) = linSeg1&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Set reqPaths(2) = linSeg2&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Dim noOfPaths As Long&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; noOfPaths = 2&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Set structFrame = structFrames.Add(&quot;c:\x.par&quot;, noOfPaths, reqPaths) ' Error here&lt;/p&gt;
&lt;p&gt;I have been struggling more than 6 hours to overcome the error 'Run Time error '5' - Invalid Procedure call or atgument'. Tried every variation. Searched help. Searched internet. But without success.&lt;/p&gt;
&lt;p&gt;Please help me.&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4251/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4251/view/topic/Default.aspx</comments>
			<author>NV</author>
			<pubDate>Tue, 07 Sep 2010 09:27:27 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Solid edge reports using an excel macro ?</title>
			<description>&lt;p&gt;Is there a code that can be used in an excel macro that will carry out the equivalent of the user(s) selecting a solid edge assembly file..(.asm) then right click with a mouse, and then selecting the command &quot;report&quot; ?&lt;/p&gt;
&lt;p&gt;Thanks in anticipation&lt;/p&gt;
&lt;p&gt;Nodski&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4250/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4250/view/topic/Default.aspx</comments>
			<author>Nodski</author>
			<pubDate>Mon, 06 Sep 2010 17:02:31 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>Remove unused Linestyles</title>
			<description>&lt;p&gt;In a batch that I downloaded RemDimSts.exe, the program is able to remove unused TextStyles, FillStyles, Hatchstyles and Dimstyles. I would like to add LineStyles as well, but can not figure out what the object property string is that I need to add to the program. I am a newbie to this, so any help ould be appreciated.&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4248/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4248/view/topic/Default.aspx</comments>
			<author>kmwolf</author>
			<pubDate>Thu, 02 Sep 2010 13:25:48 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>How to read block in a dft file without opening the dft file?</title>
			<description>&lt;p&gt;Dear all, I want to use the block which is contained in a draft file. And I won't open the draft file. Just like user drag a block from block library to a draft file in interactive environment. Any program language is OK! Thanks!&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4247/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4247/view/topic/Default.aspx</comments>
			<author>assassin</author>
			<pubDate>Thu, 02 Sep 2010 09:02:06 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Inquire Element - Measure Diameter by VBA</title>
			<description>&lt;p&gt;Hi, we have adaptive part with adaptive Inner and outer diameter. Measure values for&amp;#160; this during placing into assembly isn't easy. We tryed made macro working this way:&lt;/p&gt;
&lt;p&gt;1) select daptive part by mouse&lt;/p&gt;
&lt;p&gt;2) run macro on slected part (adaptive part in selecset)&lt;/p&gt;
&lt;p&gt;3) show/pick diameter on another part (Eg. shaft) in assembly, measure it by VBA. &lt;strong&gt;- How we can choose part/diameter and grab the diameter? (we need sometning like &quot;objApp.StartCommand 25072&quot; and grab Diameter results)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;4) show/pick another diameter on another part (Eg. bore) in assembly, measure it by VBA - same problem like in point 3&lt;/p&gt;
&lt;p&gt;5) use measured values for update adaptive part - no problem (Call ObjAdjustablePart.SetAdjustables.....)&lt;/p&gt;
&lt;p&gt;Do somebody have idea how we can try it? Thank you! &lt;img src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/smile.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4246/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4246/view/topic/Default.aspx</comments>
			<author>JM</author>
			<pubDate>Thu, 02 Sep 2010 06:40:56 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>dissolve Reference to SubASM - how to??</title>
			<description>&lt;p&gt;AnyOne tried to dissolve a Reference?&lt;/p&gt;
&lt;p&gt;I made it it works for the first level...&lt;/p&gt;
&lt;p&gt;But I've got the problem with References to SubAsm-Parts - don't know how to dissolve it...&lt;/p&gt;
&lt;p&gt;see the snippet below,&amp;#160; I only get the SubAsm as an Occurrence, but not the Part the relation is related to&lt;/p&gt;
&lt;p&gt;I know that references are there - for each hierarchical level - , but how to find the right next step reference ?&lt;/p&gt;
&lt;p&gt;thx for any hint so that I can search in the right corner, too&lt;/p&gt;
&lt;hr width=&quot;100%&quot; size=&quot;2&quot; /&gt;
&lt;p&gt;Dim Relations As SolidEdgeAssembly.Relations3d&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Relations = Occurrence.Relations3d()&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; For Each rel As Object In Relations&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If rel.type = SolidEdgeConstants.ObjectType.igPlanarRelation3d Then&lt;/p&gt;
&lt;p&gt;[..]&lt;/p&gt;
&lt;p&gt;&amp;#160; Dim PlanarRelation3d As SolidEdgeAssembly.PlanarRelation3d = rel&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim ref1 As SolidEdgeFramework.Reference&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim ref2 As SolidEdgeFramework.Reference&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim Occ1 As SolidEdgeAssembly.Occurrence&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim Occ2 As SolidEdgeAssembly.Occurrence&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim RefItem1 As Object&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ' RefPlane or Face / SolidEdgePart.RefPlane&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim RefItem2 As Object '&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &quot; / &quot;&amp;#160;&amp;#160; or SolidEdgeAssembly.AsmRefPlane&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If rel.GetElement1(True).type = SolidEdgeConstants.ObjectType.igReference Then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ref1 = rel.GetElement1(True)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Occ1 = PlanarRelation3d.Occurrence1&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; RefItem1 = ref1.Object&amp;#160;&amp;#160;&amp;#160;&amp;#160; [...]&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If&amp;#160; ...&amp;#160; 'also with GetElement2&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4245/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4245/view/topic/Default.aspx</comments>
			<author>solid81</author>
			<pubDate>Thu, 02 Sep 2010 02:23:19 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Using Insight on a 64 bit Computer</title>
			<description>&lt;p&gt;Anyone running Solid Edge V19 using Insight on a 64 bit computer?&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/2/postid/4243/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/2/postid/4243/view/topic/Default.aspx</comments>
			<author>Atom</author>
			<pubDate>Mon, 30 Aug 2010 15:06:40 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>File Properties using VB.NET leave file locked</title>
			<description>&lt;p&gt;I am converting code from VB6 to VB.net whose purpose is to access file properties.&amp;#160; In VB6, it works just fine.&lt;br /&gt;
But in VB.NET, the propertysets.CLOSE() function does not seem to release the file.&amp;#160; At any rate, the SECOND time&lt;br /&gt;
&amp;#160;I call the function (on the same file), it fails at the point indicated below.&amp;#160; Once the program exits, the file&lt;br /&gt;
&amp;#160;is released.&amp;#160; Then I can re-run the code, calling pTEST successfully the first time, but not the second time.&lt;/p&gt;
&lt;p&gt;Any ideas how to make vb.net reliable access file properties?&lt;/p&gt;
&lt;p&gt;SE version 20&lt;/p&gt;
&lt;p&gt;I call pTEST like this:&lt;br /&gt;
sTest = pTEST(&quot;C:\drawingfiles\amaxdeck\A20000015.asm&quot;, &quot;Title&quot;, &quot;SummaryInformation&quot;) 'succeeds first time&lt;br /&gt;
sTest = pTEST(&quot;C:\drawingfiles\amaxdeck\A20000015.asm&quot;, &quot;Title&quot;, &quot;SummaryInformation&quot;) 'vb6 OK; vb.NET fails&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
*** VB6 version *** work fine every time.&lt;br /&gt;
Public Function pTEST(ByRef FileWithProp As String, ByRef pKey As String, ByRef pGroup As String) As String&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; 'Solid Edge V20&amp;#160; VB6&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; 'FileWithProp = &quot;C:\drawingfiles\amaxdeck\A20000015.asm&quot; pKey = &quot;Title&quot; pGroup = &quot;SummaryInformation&quot;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Dim fPropSets As SolidEdgeFileProperties.PropertySets&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'PropertySets - for files not open&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Dim fProp As Object&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'Properties - for files not open&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Dim ObjProp As Object&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'SolidEdgeFramework.Properties&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Dim sPropTest As String&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160; Set fPropSets = CreateObject(&quot;SolidEdge.FileProperties&quot;)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; fPropSets.Open FileWithProp&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Set fProp = fPropSets(pGroup)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; pTEST = fProp(pKey).value&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; If Not (fProp Is Nothing) Then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Set fProp = Nothing&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; End If&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; If Not (fPropSets Is Nothing) Then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fPropSets.Close&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Set fPropSets = Nothing&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; End If&lt;br /&gt;
End Function&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
*** vb.net version *** works right the first time, but fails the second time called for the same file.&lt;br /&gt;
&amp;#160;&amp;#160; Public Function pTEST(ByRef FileWithProp As String, ByRef pKey As String, ByRef pGroup As String) As String&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'return the fileproperty pKey in group pGroup in file FileWithProp&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'FileWithProp = &quot;C:\drawingfiles\amaxdeck\A20000015.asm&quot;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ' pKey = &quot;Title&quot; pGroup&amp;#160; = &quot;SummaryInformation&quot;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'SolidEdge V20&amp;#160; vb.net 2010 Express&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim fPropSets As Object ' SolidEdgeFileProperties.PropertySets&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim fProp As Object&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'Properties - for files not open&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim sPropTest As String = &quot;&quot;&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fPropSets = CreateObject(&quot;SolidEdge.FileProperties&quot;)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fPropSets.Open(FileWithProp)&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'code fails here the second time called with the same file!!!!!!!&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fProp = fPropSets(pGroup)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; pTEST = fProp(pKey).value&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If Not (fProp Is Nothing) Then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Runtime.InteropServices.Marshal.ReleaseComObject(fProp)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fProp = Nothing&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If Not (fPropSets Is Nothing) Then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fPropSets.Close()&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'This seems like it should close and release the file, but it does not!!!&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Runtime.InteropServices.Marshal.ReleaseComObject(fPropSets)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fPropSets = Nothing&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; End Function&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4240/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4240/view/topic/Default.aspx</comments>
			<author>Bizare</author>
			<pubDate>Fri, 27 Aug 2010 16:36:12 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>vb6 se20 - solid edge Part - Hole size</title>
			<description>&lt;p&gt;hi-&lt;/p&gt;
&lt;p&gt;(1ea Hole Circle in Sketch)&amp;#160;of Holedata(vb)&amp;#160; And&amp;#160;( 2ea(many) Hole Circle in Sketch)&amp;#160;of Holedata(vb)&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;are&amp;#160; different&lt;/p&gt;
&lt;p&gt;&amp;#160;how to size of&amp;#160; the hole(thread)&amp;#160; was created&amp;#160; in part&amp;#160; ?&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4237/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4237/view/topic/Default.aspx</comments>
			<author>lim jong hwa</author>
			<pubDate>Thu, 26 Aug 2010 21:42:17 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>vb6 se20 - how to Drawing View Depth</title>
			<description>&lt;p&gt;Hi-&lt;/p&gt;
&lt;p&gt;i can't&amp;#160; find&amp;#160;object (Set Drawing View Depth-dft)&lt;/p&gt;
&lt;p&gt;where is it?&lt;/p&gt;
&lt;p&gt;Please answer me&lt;/p&gt;
&lt;p&gt;use VB6,se20&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4236/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4236/view/topic/Default.aspx</comments>
			<author>lim jong hwa</author>
			<pubDate>Thu, 26 Aug 2010 21:24:18 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Save As for each view -- how 2 wait for SE !</title>
			<description>&lt;p&gt;One Big Problem, googled, searched in forum - nothing found !&lt;/p&gt;
&lt;p&gt;I'd like to save each drawing view with the &quot;saveas&quot; method to iges,&lt;/p&gt;
&lt;p&gt;it works if I make a breakpoint on save as !!!, because SE needs some time to open the view&lt;/p&gt;
&lt;p&gt;with the StartCommand, (haven't found any mathod for opening the view into viewedit).&lt;/p&gt;
&lt;p&gt;So how can i find out SE is busy?&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&amp;#160;Dim views As SolidEdgeDraft.DrawingViews = DraftDoc.ActiveSheet.DrawingViews&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; For i As Integer = 1 To views.Count&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim view As SolidEdgeDraft.DrawingView = views.Item(i)&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim NewFullName As String = IgesPath &amp;amp; FileName &amp;amp; &quot;_&quot; &amp;amp; i &amp;amp; &quot;.igs&quot;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If System.IO.File.Exists(NewFullName) = True Then&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; System.IO.File.Delete(NewFullName)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Dim ActiveWindowName As String = SE_App.ActiveWindow.Caption&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'OpenView&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; view.Select()&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SE_App.StartCommand(40037)&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'SE fnished??&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'Save Iges&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; DraftDoc.SaveAs(NewFullName) 'BREAK&lt;br /&gt;
&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; 'CloseView&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SE_App.ActiveWindow.close()&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; DraftDoc.SelectSet.RemoveAll()&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Next&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4230/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4230/view/topic/Default.aspx</comments>
			<author>solid81</author>
			<pubDate>Tue, 24 Aug 2010 04:09:07 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title> help to transfer C# codes as following to C++ codes?</title>
			<description>&lt;p&gt;Dear Jason, please help me to transfer c# codes of Application Events to c++ codes? Thanks!&lt;/p&gt;
&lt;p&gt;using System;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;/p&gt;
&lt;p&gt;namespace AppEventsCSharp&lt;br /&gt;
{&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; public partial class Form1 : Form&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; {&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; private SolidEdgeFramework.Application SEApp ;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; private SolidEdgeFramework.ISEApplicationEvents_Event AppEvents;&lt;br /&gt;
&amp;#160;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; public Form1()&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; InitializeComponent();&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; }&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; private void Form1_Load(object sender, EventArgs e)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SEApp = Marshal.GetActiveObject(&quot;SolidEdge.Application&quot;)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; as SolidEdgeFramework.Application;&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; AppEvents = (SolidEdgeFramework.ISEApplicationEvents_Event)SEApp.ApplicationEvents;&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; AppEvents.BeforeCommandRun+=new SolidEdgeFramework.ISEApplicationEvents_BeforeCommandRunEventHandler(AppEvents_BeforeCommandRun);&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; }&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; void AppEvents_BeforeCommandRun(int theCommandID)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; { MessageBox.Show(&quot;Command will run!&quot;); }&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; }&lt;br /&gt;
}&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4228/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4228/view/topic/Default.aspx</comments>
			<author>assassin</author>
			<pubDate>Mon, 23 Aug 2010 22:34:01 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>Problem while getting the objects using &quot;SelectSet&quot; property.</title>
			<description>&lt;p&gt;I have an SolidEdge Assembly which is having an one more assembly in it .i.e assembly having a subassembly.&lt;/p&gt;
&lt;p&gt;I am opening this assembly in Solidedge ST version application.&lt;/p&gt;
&lt;p&gt;Then I am selecting some parts from MainAssembly and then some parts from its subassembly from path finder window , treeview.&lt;/p&gt;
&lt;p&gt;Then , I am reading these&amp;#160;selections&amp;#160; using &lt;strong&gt;&quot;SelectSet&lt;/strong&gt;&quot; property&amp;#160; API on the main assembly&lt;/p&gt;
&lt;p&gt;I am getting the currect&amp;#160; total count of selected part form &lt;strong&gt;SelectSet&lt;/strong&gt; property&amp;#160;&lt;/p&gt;
&lt;p&gt;But while reading and converting the objects in &quot;SeletionSet', I am successful in converting the objects of main assembly parts &amp;#160;only and while converting the objects of parts which are selected from subassembly, program&amp;#160;does not able to convert these objects in any type of Solidedge document type.&lt;/p&gt;
&lt;p&gt;So, please give me the information about , how I can access these parts which are selected from the subassembly using &lt;strong&gt;'SelectSet'&lt;/strong&gt; API.&lt;/p&gt;
&lt;p&gt;For reference ,Code&amp;#160; was written&amp;#160; as follows.&lt;/p&gt;
&lt;p&gt;&lt;font size=&quot;2&quot;&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;AssemblyDocument&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;)objApp.ActiveDocument;&lt;/font&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;Occurrence&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt; objOccur = &lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;null&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;;&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;for&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt; (&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;int&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt; n = 1; n &lt;= objSelectedSet.Count; n++)&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;try&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;objOccur = (SolidEdgeAssembly.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;/font&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;Occurrence&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;)objSelection; &lt;strong&gt;//Gives error while loops for object of subassembly parts in main assembly.&lt;/strong&gt;&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;catch&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt; (&lt;/font&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#2b91af&quot; size=&quot;2&quot;&gt;Exception&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt; ex)&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;throw&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;2&quot;&gt; ex;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;objAsmDoc = (SolidEdgeAssembly.&lt;/p&gt;
&lt;p&gt;objAsmOccurrences = objAsmDoc.Occurrences;&lt;/p&gt;
&lt;p&gt;objSelectedSet = objAsmDoc.SelectSet;&lt;/p&gt;
&lt;p&gt;SolidEdgeAssembly.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;objSelection = objSelectedSet.Item(n);&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4227/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4227/view/topic/Default.aspx</comments>
			<author>pthorat</author>
			<pubDate>Sun, 22 Aug 2010 07:59:31 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>FamilyMembers Panel problem (refreshing)</title>
			<description>&lt;p&gt;Hallo, when I use in my macro the following commands&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;objAsm.AssemblyFamilyMembers.GlobalEditMode = False 'changing edit mode&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;objAsm.AssemblyFamilyMembers.ActivateMember(sFamilyMember) 'changing Family Member&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;in Solid Edge ST2, the FamilyMembers panel not refreshing, only the graphic window and the occurence tree panel is refreshing. After closing my macro, &lt;span class=&quot;short_text&quot; id=&quot;result_box&quot;&gt;&lt;span title=&quot;&quot; style=&quot;&quot;&gt;there is a mismatch between the two panels (and grafic window).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;Can anyone help?&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;P.S.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;short_text&quot; id=&quot;result_box&quot;&gt;&lt;span title=&quot;&quot; style=&quot;&quot;&gt;It is possible that the panel names others, I use hungarian version.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4226/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4226/view/topic/Default.aspx</comments>
			<author>peter6396</author>
			<pubDate>Fri, 20 Aug 2010 04:12:32 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>XLS link to the part</title>
			<description>&lt;p&gt;Hello guys,&lt;/p&gt;
&lt;p&gt;i have been trying to work with SE part (in VB) which has link to XLS worksheet (see attachment). All I need is set up 'update' option of this link to 'manual' state. Or, and this could be even better, break this link completely. There were some formulas containing XLS string inside of variable table - i already cleaned it, but it was not enough. When i open some ASM with this part (with this link to XLS), it take incredibly long time. This part is saved in shared folder (we don't use insight connect). Thank you for your help.&lt;/p&gt;
&lt;p&gt;Roman&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4220/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4220/view/topic/Default.aspx</comments>
			<author>romanes</author>
			<pubDate>Wed, 18 Aug 2010 05:23:23 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>About the &quot;Callout&quot;!</title>
			<description>&lt;p&gt;Hi, all!&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; In SE SDK, I know how to create &quot;textbox&quot;,&quot;balloon&quot;,&quot;datum&quot; ..., but the &quot;Callout&quot;.&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; I want to know how to create the &quot;Callout&quot; in dft.&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Please help.&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; Thanks!&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4219/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4219/view/topic/Default.aspx</comments>
			<author>fatkids</author>
			<pubDate>Tue, 17 Aug 2010 02:49:20 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>How to add objects to the &quot;group&quot; in DFT?</title>
			<description>&lt;p&gt;Hi, all!&lt;/p&gt;
&lt;p&gt;I draw some objects in dft, include line, callout, textbox, etc.&lt;/p&gt;
&lt;p&gt;I want to add these objects to &quot;group&quot;,&lt;/p&gt;
&lt;div style=&quot;height: auto&quot; id=&quot;dict_content&quot; class=&quot;dict_inner&quot;&gt;
&lt;p&gt;How do I ?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;/div&gt;
[script removed]
[script removed]</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4212/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4212/view/topic/Default.aspx</comments>
			<author>fatkids</author>
			<pubDate>Thu, 12 Aug 2010 08:41:04 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>Characteristics of steel tubing?</title>
			<description>&lt;h1 class=&quot;subject&quot;&gt;&amp;#160;&lt;/h1&gt;
&lt;div class=&quot;content&quot;&gt;
&lt;p&gt;I'm looking for the specs on  various sizes of square steel tubing, mainly the amount of force  required to crush the tube or a formula to determine it. If anyone has a  link or a formula I would appreciate it. Thanks.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
======================&lt;br /&gt;
[url=http://www.micrositez.co.uk] seo[/url] | [url=http://www.micrositez.co.uk/link-building-packages.html] link building[/url]&lt;/p&gt;
&lt;/div&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/2/postid/4211/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/2/postid/4211/view/topic/Default.aspx</comments>
			<author>maha11</author>
			<pubDate>Thu, 12 Aug 2010 02:45:23 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>PartList Positioning</title>
			<description>&lt;p&gt;All --&lt;/p&gt;
&lt;p&gt;I am pretty new to SolidEdge programming, but I found a helluva resources available in this forum. Cheers. Now to the problem. I am creating a draft from an assembly. After calling in some of the basic views, I am creating a partslists of one of the views. By default, it is positioned at the Lower left corrner of the sheet. Through program how can I set the position of the part list. What is the api call for the same.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;cheers.&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4207/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4207/view/topic/Default.aspx</comments>
			<author>thomas</author>
			<pubDate>Mon, 09 Aug 2010 10:01:58 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>How to use &quot;Convert to text&quot; in DFT?</title>
			<description>&lt;p&gt;Hi all:&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; I want to convert the Partlist to text through program in dft, Please tell me how to achieve.&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; The function is the &quot;Convert to text&quot; in dft. How to achieve&amp;#160; the functional through program.&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Thanks.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4204/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4204/view/topic/Default.aspx</comments>
			<author>fatkids</author>
			<pubDate>Thu, 05 Aug 2010 11:37:10 GMT</pubDate>
			<slash:comments>4</slash:comments>
		</item>
		<item>
			<title>Convert Solidedge files to DWF format</title>
			<description>&lt;p&gt;Can we convert the Solidedge-ST files to DWF format?&lt;/p&gt;
&lt;p&gt;If it is possible, then is there any API present which works with Solidedge_ST &amp;#160;version?&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4201/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4201/view/topic/Default.aspx</comments>
			<author>pthorat</author>
			<pubDate>Tue, 03 Aug 2010 09:09:53 GMT</pubDate>
			<slash:comments>3</slash:comments>
		</item>
		<item>
			<title>About &quot;DesignEdgebarFeatures&quot;????</title>
			<description>&lt;p&gt;Hi, All!&lt;/p&gt;
&lt;p&gt;I have a assembly doc, I want to get the&amp;#160;name of every DesignEdgebarFeatures through Occurrence.&lt;/p&gt;
&lt;p&gt;In VB6, I can do that:&lt;/p&gt;
&lt;p&gt;Occurrence.PartDocument.DesignEdgebarFeatures(i).Name&lt;/p&gt;
&lt;div style=&quot;height: auto&quot; id=&quot;dict_content&quot; class=&quot;dict_inner&quot;&gt;
&lt;p&gt;But in C #, how do I write ?&lt;/p&gt;
&lt;p&gt;Please help!&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;/div&gt;
[script removed]
[script removed]</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4198/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4198/view/topic/Default.aspx</comments>
			<author>fatkids</author>
			<pubDate>Tue, 03 Aug 2010 02:37:30 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Need A0 sheet !!</title>
			<description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160; I am new to solid edge.Most of my drawings are in A0 size.i cant found A0 size in SE&lt;img height=&quot;20&quot; width=&quot;20&quot; src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/ermm.gif&quot; alt=&quot;&quot; /&gt;.what is the procedure to built a new sheet of that size?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;Kache&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/6/postid/4196/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/6/postid/4196/view/topic/Default.aspx</comments>
			<author>kache</author>
			<pubDate>Fri, 23 Jul 2010 07:10:17 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>ActiveDocument is empty</title>
			<description>&lt;p&gt;Hello all,&lt;/p&gt;
&lt;p&gt;I have special trouble on some computers (SE ST2 64b MP4, Win XP 64b). When I use SE Browser then I can see that object ActiveDocument is empty and is of typ *IDispatch instead of AssemblyDocument. Is there missing any library on these computers? Which one and where? Is this trouble solving MP7?&lt;/p&gt;
&lt;p&gt;Thank you for any advice.&lt;br /&gt;
Regards,&lt;br /&gt;
Jara&lt;br /&gt;
&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4195/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4195/view/topic/Default.aspx</comments>
			<author>Jara Ctverak</author>
			<pubDate>Fri, 23 Jul 2010 04:38:08 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>SolidEdge AddIn in Windows 64bit with Visual Studio 2010</title>
			<description>&lt;p&gt;Hi Guys,&lt;/p&gt;
&lt;p&gt;i experienced a strange behaviour after updating to Visual Studio 2010.&lt;/p&gt;
&lt;p&gt;When using my SolidEdge AddIn Project under VS 2008 with .NET 3.5, i had absolut no problems with AddIn Registration.&lt;br /&gt;
After the update, it is absolutely not possible to register the COM - Interop AddIn.&lt;/p&gt;
&lt;p&gt;The strange behaviour is only under 64bit OS, not under 32bit OS.&lt;/p&gt;
&lt;p&gt;When debugging my project, the AddIn Toolbar is not visible, i have to register manually.&lt;/p&gt;
&lt;p&gt;Trying to manually registering the AddIn fails in some way because the Solid Edge Interops can not be registered properly with 64bit Version of .NET Framework (i guess this is Version 4 issue), but the AddIn so far is registered properly.&lt;/p&gt;
&lt;p&gt;It is visible in the toolbar and I can use everything out of it as long i do not take use of any Solid Edge Interop Methods, if I do so an Exception is thrown.&lt;/p&gt;
&lt;p&gt;Anybody a hint how to solve this one?&lt;/p&gt;
&lt;p&gt;Thank You in Advance&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;Edit: My Error, when using Interop Functionality&lt;/p&gt;
&lt;p&gt;ErrorMessage: &lt;span class=&quot;medium_text&quot; id=&quot;result_box&quot;&gt;&lt;span title=&quot;&quot; style=&quot;background-color: rgb(235, 239, 249);&quot;&gt;The  file or assembly 'Interop.SolidEdgeDraft, Version = 1.0.0.0, Culture =  neutral, PublicKeyToken = null' or one of its dependencies was not  found. &lt;/span&gt;&lt;span title=&quot;&quot; style=&quot;&quot;&gt;The system can not find the file specified.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4192/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4192/view/topic/Default.aspx</comments>
			<author>decodex</author>
			<pubDate>Thu, 22 Jul 2010 10:58:11 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Rounds.Add Method</title>
			<description>&lt;p&gt;Hello all.&lt;br /&gt;
Somebody used such method?&lt;/p&gt;
&lt;p&gt;
&lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;Content-Type&quot; /&gt;
&lt;meta content=&quot;Word.Document&quot; name=&quot;ProgId&quot; /&gt;
&lt;meta content=&quot;Microsoft Word 12&quot; name=&quot;Generator&quot; /&gt;
&lt;meta content=&quot;Microsoft Word 12&quot; name=&quot;Originator&quot; /&gt;
&lt;link href=&quot;file:///C:\WINDOWS\TEMP\msohtmlclip1\01\clip_filelist.xml&quot; rel=&quot;File-List&quot; /&gt;
&lt;link href=&quot;file:///C:\WINDOWS\TEMP\msohtmlclip1\01\clip_themedata.thmx&quot; rel=&quot;themeData&quot; /&gt;
&lt;link href=&quot;file:///C:\WINDOWS\TEMP\msohtmlclip1\01\clip_colorschememapping.xml&quot; rel=&quot;colorSchemeMapping&quot; /&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
&lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;true&quot;
DefSemiHidden=&quot;true&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
LatentStyleCount=&quot;267&quot;&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 7&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 8&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 9&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; Name=&quot;Default Paragraph Font&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;59&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Table Grid&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Placeholder Text&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Revision&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;List Paragraph&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Quote&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 1&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 2&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 3&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 4&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 5&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 6&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Emphasis&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Emphasis&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Reference&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Reference&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; SemiHidden=&quot;false&quot;
UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; Name=&quot;Bibliography&quot; /&gt;
&lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot; /&gt;
&lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;style type=&quot;text/css&quot;&gt;
&lt;!--
 /* Font Definitions */
 @font-face
	{font-family:&quot;Cambria Math&quot;;
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-charset:1;
	mso-generic-font-family:roman;
	mso-font-format:other;
	mso-font-pitch:variable;
	mso-font-signature:0 0 0 0 0 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-charset:204;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1073750139 0 0 159 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:&quot;&quot;;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:10.0pt;
	margin-left:0cm;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:&quot;Times New Roman&quot;;
	mso-bidi-theme-font:minor-bidi;
	mso-fareast-language:EN-US;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:&quot;Times New Roman&quot;;
	mso-bidi-theme-font:minor-bidi;
	mso-fareast-language:EN-US;}
.MsoPapDefault
	{mso-style-type:export-only;
	margin-bottom:10.0pt;
	line-height:115%;}
@page Section1
	{size:612.0pt 792.0pt;
	margin:2.0cm 42.5pt 2.0cm 3.0cm;
	mso-header-margin:36.0pt;
	mso-footer-margin:36.0pt;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
--&gt;
&lt;/style&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:&quot;Обычная таблица&quot;;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:&quot;&quot;;
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin-top:0cm;
mso-para-margin-right:0cm;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0cm;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;}
&lt;/style&gt;
&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
&lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
&lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
&lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
&lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;Rounds.Add   Method&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&amp;#160;&lt;/p&gt;
&lt;p style=&quot;line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;strong&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;Parameters&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;NumberOfEdgeSets &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Int32&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
Specifies the number of edges to be rounded.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;EdgeSetArray &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Object&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
An array of sets of edges to replace with Round.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;RadiusArray &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Object&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
An array of radius values to be used in constructing the Rounds.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;RollAcrossTangentEdges &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Object&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
Specifies whether or not the round should roll smoothly across tangent edges it encounters.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;RollOrCapAcrossSharpEdges &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Object&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
Specifies whether or not the round should roll along and notch any sharp edges it encounters.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;RollAlongBlendEdges &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Object&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
Specifies whether the round should be forced to cliff or to keep the shape of the original edge.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin-bottom: 0.0001pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;ApplyVertexBlends &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0.0001pt 36pt; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;span serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: blue;&quot;&gt;Object&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; serif=&quot;&quot; roman=&quot;&quot; new=&quot;&quot; times=&quot;&quot; style=&quot;font-size: 12pt;&quot;&gt;&lt;br /&gt;
ApplyVertexBlends Parameter&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
What object is required in RollOrCapAcrossSharpEdges?&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4182/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4182/view/topic/Default.aspx</comments>
			<author>Danisan</author>
			<pubDate>Wed, 21 Jul 2010 07:56:12 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>AssemblyProperties Interface</title>
			<description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;div style=&quot;height: auto&quot; id=&quot;dict_content&quot; class=&quot;dict_inner&quot;&gt;
&lt;p&gt;In the SE SDK has&amp;#160;the &quot;AssemblyProperties&quot;&amp;#160;interface.&lt;/p&gt;
&lt;p&gt;I want to get something through this interface, but the results&amp;#160;is null.&lt;/p&gt;
&lt;p&gt;I want to add something to model&amp;#160;through &lt;a target=_blank href=&quot;mk:@MSITStore:D:\My%20Folder\Desktop\Sesdk-ST.chm::/html/0697af8f-c3fb-ce20-e6fb-ca2e719bb29d.htm&quot;&gt;AddProperty(String)&lt;/a&gt;&amp;#160;and &lt;a target=_blank href=&quot;mk:@MSITStore:D:\My%20Folder\Desktop\Sesdk-ST.chm::/html/a95bca2b-23ec-68e0-e3c1-a91509d133a9.htm&quot;&gt;AddPropertyItem(String, PropertyTypeConstants, Object)&lt;/a&gt;&amp;#160; method, but I can not find the content I added in models.&lt;/p&gt;
&lt;p&gt;In models, Where is AssemblyProperties????&lt;/p&gt;
&lt;p&gt;my program:&lt;/p&gt;
&lt;p&gt;SolidEdgeFramework.Application SEApp = null;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SolidEdgeFramework.SolidEdgeDocument SEDoc = null;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SolidEdgeAssembly.AssemblyDocument ASMDoc = null;&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SolidEdgeAssembly.AssemblyProperties asm_props = null;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SolidEdgeAssembly.AssemblyProperty asm_prop = null;&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SEApp = Marshal.GetActiveObject(&quot;SolidEdge.Application&quot;) as SolidEdgeFramework.Application;&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; SEDoc = SEApp.ActiveDocument as SolidEdgeFramework.SolidEdgeDocument;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; if (SEDoc.Type == SolidEdgeFramework.DocumentTypeConstants.igAssemblyDocument)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; ASMDoc = SEDoc as SolidEdgeAssembly.AssemblyDocument;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; asm_props = ASMDoc.AssemblyProperties;&lt;/p&gt;
&lt;p&gt;******************get ************************************but is null&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; for (int i = 1; i &lt;= asm_props.Count; i++)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; {&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; asm_prop = asm_props.Item(i);&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; MessageBox.Show(asm_prop.Name);&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; }&lt;/p&gt;
&lt;p&gt;**********************************************************&lt;br /&gt;
*****************add************************************but I can not find in model&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; asm_props.AddProperty(&quot;hello asm&quot;);&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; asm_prop = asm_props.Item(1);&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; asm_prop.AddPropertyItem(&quot;111&quot;, SolidEdgePart.PropertyTypeConstants.sePropertyTypeString,(object)(&quot;hell&quot;));&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; }&lt;/p&gt;
&lt;p&gt;Please help!&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;/div&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4177/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4177/view/topic/Default.aspx</comments>
			<author>fatkids</author>
			<pubDate>Tue, 20 Jul 2010 21:23:24 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>Occurrence Properties in Sub-Assemblies</title>
			<description>&lt;p&gt;I'm trying to control the occurrence properties of components in sub-assemblies. This seems to work to hide the component:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;oSecBackWall.Visible = False&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;But I can't get control of Assembly Reports or Drawing Views at this same point. I tried:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;oSecBackWall.ThisAsOccurrence.DisplayInDrawings = False&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;oSecBackWall.ThisAsOccurrence.IncludeInBom = False&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;But none of these seem to have any affect. I testes with a draft file and this component is visible in the draft file.&lt;/p&gt;
&lt;p&gt;How can I control these properties?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4176/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4176/view/topic/Default.aspx</comments>
			<author>tys0n</author>
			<pubDate>Tue, 20 Jul 2010 10:22:43 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>How to get active &quot;in edit&quot; component ?</title>
			<description>&lt;p&gt;Hello to all!&lt;/p&gt;
&lt;p&gt;Does anybody know if it's possible to get edited in place component in the assembly?&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 10pt; font-family: 'Arial','sans-serif'&quot;&gt;For example, a user has a simple assembly with one simple component.&lt;/span&gt; &lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; font-family: 'Arial','sans-serif'&quot;&gt;The user call the command &quot;Edit &quot; from the context menu &amp;#160;for the component. &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; font-family: 'Arial','sans-serif'&quot;&gt;The component &amp;#160;becomes acive and we can edit&amp;#160;it&amp;#160;in the context of the assembly.&lt;/span&gt; &lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size: 10pt; font-family: 'Arial','sans-serif'&quot;&gt;So, In that situation Is it possible to get the information via API that the current opened ( not active!!! [active doc is part]&amp;#160;) document &amp;#160;is assembly ?( And get pointer to it )&lt;/span&gt; &lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; font-family: 'Arial','sans-serif'&quot;&gt;I also need to get &amp;#160;the pointer to the activated component (probably&amp;#160;as Occurrence or as Reference object)&lt;/span&gt; &lt;br /&gt;
&lt;span style=&quot;font-size: 10pt; font-family: 'Arial','sans-serif'&quot;&gt;From the API reference I haven't found we way how to get that information.&lt;/span&gt;&amp;#160;&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4174/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4174/view/topic/Default.aspx</comments>
			<author>Sergey</author>
			<pubDate>Tue, 20 Jul 2010 09:37:00 GMT</pubDate>
			<slash:comments>11</slash:comments>
		</item>
		<item>
			<title>Dimensions rebinding</title>
			<description>&lt;p&gt;I'm having a hard time trying to resolve my issue. Hope I'll find some answers here.&lt;/p&gt;
&lt;p&gt;The workflow is simple:&lt;/p&gt;
&lt;p&gt;1. Add any feature to part. Let's say it is cutout.&lt;/p&gt;
&lt;p&gt;2. Create draft document for the part.&lt;/p&gt;
&lt;p&gt;3. In draft document add dimension for the cutout feature.&lt;/p&gt;
&lt;p&gt;4. Go to part document and suppress the cutout feature.&lt;/p&gt;
&lt;p&gt;5. Return to draft document and update it. The cutout feature has dissappeared from the draft and the dimension has lost it's referenced object and became green, i.e. &quot;dead&quot;.&lt;/p&gt;
&lt;p&gt;6. Go to part and unsuppress the cutout feature.&lt;/p&gt;
&lt;p&gt;7. Return to draft document and update it. The cutout has reappeared, but the dimension is still &quot;dead&quot;.&lt;/p&gt;
&lt;p&gt;I know how to rebind the dimension back to its reference objects manually, but I've spent a plenty of hours trying to find a way to do it programmatically.&amp;#160;&lt;/p&gt;
&lt;p&gt;Have anybody dealed with such issue already?Any advises/ideas?&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4173/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4173/view/topic/Default.aspx</comments>
			<author>Polina</author>
			<pubDate>Sun, 18 Jul 2010 11:47:38 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Debugging add-in with VB.net</title>
			<description>&lt;p&gt;I started some time ago recreating my VB6 addin in VB.NET (2008). I have Visual Studio 2008 Professional.&lt;/p&gt;
&lt;p&gt;In VB6, you could add any unknown object to the watch, and then view all its properties and methods. Without declaring the object as something specific.. But in VB.NET, I can't see a single property of an unspecified object.&amp;#160; It always says Children could not be evaluated.&amp;#160;Only if I specifically declare it as something like, like dim objVariable as SolidedgeFramework.Variable, then it works.&lt;/p&gt;
&lt;p&gt;Am I doing something wrong here? Or is this one of the other &quot;cool&quot; new features of .NET compared to the good ol' VB6? &lt;img alt=&quot;&quot; width=&quot;20&quot; height=&quot;20&quot; src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/crazy.gif&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Tymen&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4172/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4172/view/topic/Default.aspx</comments>
			<author>Tymen</author>
			<pubDate>Sat, 17 Jul 2010 07:56:31 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>A real Ribbon Bar... </title>
			<description>&lt;p&gt;Hello Guys,&lt;/p&gt;
&lt;p&gt;i worked some weeks ago with a COM Interop for Office (Word, Excel, Powerpoint and Outlook) and had so far a solution for a RibbonBar with 5 different Groups and one Tab namew for the whole RibbonBar under ONE (!!!) Tab, not under a Add-In Tab.&lt;/p&gt;
&lt;p&gt;I am quite confused (well obviously it drives me nuts), why in SE it is not possible to get the things handled like in Office... or am i blind ? I searched this forum, but haven't found a solution in c#. (only one in c++, but it will take me years to understand that one)&lt;/p&gt;
&lt;p&gt;I used an XML - File so far to manage my RibbonBar in Office...&lt;br /&gt;
&amp;#160;it looked like this:&lt;/p&gt;
&lt;p&gt;[script removed]
&amp;#160; &lt;ribbon&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;tabs&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;tab id=&quot;OfficeIntegrationTabId&quot; label=&quot;MY_PRODUCT_TAB_NAME&quot;&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;group id=&quot;grpSession&quot; label=&quot;MY_FIRST_GROUP_NAME&quot;&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; [script removed]
....&lt;/p&gt;
&lt;p&gt;....&lt;/p&gt;
&lt;p&gt;&lt;/group&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/tab&gt;&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; &lt;/tabs&gt;&lt;br /&gt;
&amp;#160; &lt;/ribbon&gt;&lt;br /&gt;
&lt;/customUI&gt;&lt;/p&gt;
&lt;p&gt;I have a commandBar in SE (C# solution) already.&amp;#160; But is it somehow possible to put buttons in several groups together with a custom name in SE but under ONE CUSTOM NAMED Tab? I have a problem if a user has more than one addIn. With this case there will be groups for each addin and in addition for the groups I designed.&lt;/p&gt;
&lt;p&gt;It seems like, if i add CommandBar and CommandBarButton that these Controls are no real RibbonBar - Controls (like the name already gives a hint about that).&lt;/p&gt;
&lt;p&gt;But is there a solution or workaround how to handle that?&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4170/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4170/view/topic/Default.aspx</comments>
			<author>decodex</author>
			<pubDate>Wed, 14 Jul 2010 10:49:06 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>saving options</title>
			<description>&lt;p&gt;Greetings,&lt;/p&gt;
&lt;p&gt;I am new to the forum and to programming solid edge macros and add ins. I have been looking around for some code examples to get myself started but it is a little overwhelming.&amp;#160;&lt;/p&gt;
&lt;p&gt;What i am looking to do is rather simplistic but i don't know how hard it would be to code and I am not sure where would be a good place to start.&amp;#160; Regardless what I would like is a macro that does something like this.&lt;/p&gt;
&lt;p&gt;when the save button is pressed enter a sub that looks something like this&lt;/p&gt;
&lt;p&gt;If CurrentFile == sheet metal then&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Save CurrentFile.psm&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160; Save CurrentFile.dxf&lt;/p&gt;
&lt;p&gt;else if CurrentFile == Draft then&lt;/p&gt;
&lt;p&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Save CurrentFile.dft&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160;&amp;#160; Save CurrentFile.pdf&lt;/p&gt;
&lt;p&gt;EndIf&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;Eventually i would like this to lead into something that would scan a BOM and check all parts if they have a dft, dxf and pdf as needed.&amp;#160; We need the Dxf's and pdf's for part we send out to get laser cut and having out of date files has been a problem so i would like to find a way that elimiates that problem.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;Thank you Very much for any help that can be given. I am most appreciative.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;Gold bug&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4163/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4163/view/topic/Default.aspx</comments>
			<author>Gold Bug</author>
			<pubDate>Tue, 13 Jul 2010 10:29:28 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Embedded Excel Worksheets / BOM</title>
			<description>&lt;p&gt;I regularly visit your site, and have recommended it to others. As far as Solid Edge, this is THE site to get help from. Great Job to all!&lt;/p&gt;
&lt;p&gt;I have never been able to get a fully successful BOM from Solid Edge. I was using recursion and the occurances object, and was semi-successful, but the Excel worksheets (SmartFrames2d), that at least for us, hold the part materials and thier qty per parent, have been elusive. I believe it to be an Excel issue...&amp;#160; the dreaded &quot;call was rejected by callee&quot; error telling me that Excel is still busy with its last job...&amp;#160;&amp;#160; Then I came across the SEPartReader.dll and WOW, how much easier and quicker it is for getting occurances. Works great and I am thrilled. But....&amp;#160;&amp;#160; using DraftDataAPI.dll to get the sheet data only seems to get a picture of the data (emf file). Is there a way to get the Excel worksheet data without opening Excel within Solid Edge? Am including the (working) code for occurances and the draft emf in case anyone else is interested in it &lt;img alt=&quot;&quot; src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/smile.gif&quot; /&gt;&amp;#160;Thanks again for the great help!&lt;/p&gt;
&lt;p&gt;Dim objSEREADERLib As New SEREADERLib.SEFileReader&lt;br /&gt;
Dim objAttClass As SEREADERLib.AttachmentClass&lt;br /&gt;
Dim objAttmnts As SEREADERLib.Attachments&lt;br /&gt;
If File.Exists(&quot;C:\Temp\73014012.asm&quot;) Then Kill(&quot;C:\Temp\73014012.asm&quot;)&lt;br /&gt;
File.Copy(&quot;ServerPath\73014012.asm&quot;, &quot;C:\Temp\73014012.asm&quot;)&lt;br /&gt;
objSEREADERLib.Open(&quot;C:\Temp\73014012.asm&quot;)&amp;#160; &lt;br /&gt;
objAttmnts = objSEREADERLib.Attachments()&lt;br /&gt;
Dim iAttCount As Integer = objAttmnts.Count&lt;br /&gt;
Dim i As Integer&lt;br /&gt;
For i = 1 To iAttCount&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; objAttClass = objAttmnts.Item(i)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; msgbox(objAttClass.Filename())&lt;br /&gt;
Next&lt;/p&gt;
&lt;p&gt;Dim objDraftReader As New DRAFTDATAAPILib.DraftInfo&lt;br /&gt;
objDraftReader.Open(&quot;ServerPath\73432005.dft&quot;)&lt;br /&gt;
Dim intShtCount As Integer = objDraftReader.GetSheetCount()&lt;br /&gt;
Dim mSheetInfo As DRAFTDATAAPILib.DraftInfoClass&lt;br /&gt;
Dim n As System.UInt32 = Convert.ToUInt32(objDraftReader.GetCurrentSheetIndex)&lt;br /&gt;
Dim rWid As Double = 0&lt;br /&gt;
Dim rHgt As Double = 0&lt;br /&gt;
For i = 1 To intShtCount&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; objDraftReader.SetMetafileName(&quot;C:\Temp\73432005.emf&quot;)&lt;br /&gt;
&amp;#160;&amp;#160;&amp;#160; objDraftReader.GetEnhMetafile(n, rWid, rHgt)&lt;br /&gt;
Next&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4155/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4155/view/topic/Default.aspx</comments>
			<author>Jennece Wilson</author>
			<pubDate>Mon, 12 Jul 2010 07:14:01 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>How to connect Leader to DVLine in Drawing View</title>
			<description>&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&lt;font size=&quot;2&quot;&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;/font&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;HI,&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;I am trying to connect a Leader to the DVLine object in Drawing View using following method,&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;All the entities in Drawing view are starting with DV like DVLine, DVArc, DvCircle etc. &lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;objLeader = objLeaders.AddByConnect(Object,&amp;#160;X1, Y1, 0,False ,&amp;#160;X2, Y2, 0)&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;Here i am passing object as,&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 10pt&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; color: blue; font-size: 10pt; mso-no-proof: yes&quot;&gt;Dim&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt; DVline &lt;/font&gt;&lt;span style=&quot;color: blue&quot;&gt;As&lt;/span&gt;&lt;font color=&quot;#000000&quot;&gt; SolidEdgeDraft.DVLine2d&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;X1,Y1 as Leader connect &lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;X2,Y2 as end point of DVLine&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;I observed that Leader does not connect to DVLine but take some&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;Arbitrary vague point (Not the end point of DVLIne)&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;I checked it with the Normal line as,&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; color: blue; font-size: 10pt; mso-no-proof: yes&quot;&gt;Dim&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt; objLine &lt;/font&gt;&lt;span style=&quot;color: blue&quot;&gt;As&lt;/span&gt;&lt;font color=&quot;#000000&quot;&gt; SolidEdgeFrameworkSupport.Line2d&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;It gets connected properly.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;Can anybody tell me what is wrong with it ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;o:p&gt;&lt;font color=&quot;#000000&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0in 0in 0pt&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt; mso-no-proof: yes&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;Ravindra.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4138/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4138/view/topic/Default.aspx</comments>
			<author>Ravi</author>
			<pubDate>Wed, 07 Jul 2010 00:53:26 GMT</pubDate>
			<slash:comments>2</slash:comments>
		</item>
		<item>
			<title>SE Macro Programmer wanted</title>
			<description>&lt;p&gt;During the last few months, I have received numeruous requests for custom Macros from clients in Mexico.&amp;#160; The latest oneis for a XpresRoute marco.&lt;/p&gt;
&lt;p&gt;If someone is interested, please contact me at jbatty@gtservicios.com&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4121/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4121/view/topic/Default.aspx</comments>
			<author>Joe B</author>
			<pubDate>Mon, 05 Jul 2010 18:48:01 GMT</pubDate>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Solid Edge Options - Draft</title>
			<description>&lt;p&gt;Hi guys!&lt;/p&gt;
&lt;p&gt;When you open a draft file, you can set to Solid Edge Options panel (options for active document):&lt;/p&gt;
&lt;p&gt;- Edge Display: Visible edge style, Tangent edge style, Hidden edge style, ecc....&lt;/p&gt;
&lt;p&gt;- Dimension style: style for each type of dimension...&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;How can I know this information by API?&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4120/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4120/view/topic/Default.aspx</comments>
			<author>Luca</author>
			<pubDate>Mon, 05 Jul 2010 05:18:38 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>SE Spy for inventor?</title>
			<description>&lt;p style=&quot;margin: 0cm 0cm 0pt&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-GB&quot; lang=&quot;EN-GB&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;Hi to all&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0pt&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-GB&quot; lang=&quot;EN-GB&quot;&gt;&lt;o:p&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;&amp;#160;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0pt&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-GB&quot; lang=&quot;EN-GB&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;A rather unfit question for this forum maybe&amp;#160;but – does anyone know of a similar program as SE Spy for autodesk inventor? &lt;span style=&quot;mso-spacerun: yes&quot;&gt;&amp;#160;&lt;/span&gt;I’ve used SESpy many times for the solid edge dept and now the inventor guys would like to have my skills working for them…&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0pt&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-GB&quot; lang=&quot;EN-GB&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&lt;o:p&gt;any ideas?&lt;/o:p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0pt&quot; class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;mso-ansi-language: EN-GB&quot; lang=&quot;EN-GB&quot;&gt;&lt;o:p&gt;&lt;font size=&quot;3&quot; face=&quot;Times New Roman&quot;&gt;Alon&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4119/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4119/view/topic/Default.aspx</comments>
			<author>ara</author>
			<pubDate>Mon, 05 Jul 2010 04:44:17 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
		<item>
			<title>Solid Edge v19 problem</title>
			<description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I have solid edge V19 installed. Recently the ribbon status bar vanished. I have tried to re-install it but have had no luck.&amp;#160;Any suggestions welcome!&lt;img width=&quot;20&quot; height=&quot;20&quot; alt=&quot;&quot; src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/crazy.gif&quot; /&gt;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/2/postid/4117/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/2/postid/4117/view/topic/Default.aspx</comments>
			<author>1964deano1</author>
			<pubDate>Sat, 03 Jul 2010 06:44:19 GMT</pubDate>
			<slash:comments>6</slash:comments>
		</item>
		<item>
			<title>Color confusion in asm / occurrences</title>
			<description>&lt;p&gt;Hi there&lt;/p&gt;
&lt;p&gt;I'd like to change the style (color) of parts/asm in my top asm, but not inside the occs.&lt;/p&gt;
&lt;p&gt;I played around with recursive walking through Occurrences and SubOccs, but&lt;br /&gt;
it doesn't do what i expect.&lt;/p&gt;
&lt;p&gt;It's right what the api does, I think = changing the occs = go inside and &quot;destroy&quot; the style there &lt;img width=&quot;20&quot; height=&quot;20&quot; src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/cool.gif&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
But I'd like to change the color only in the top-asm context,&lt;br /&gt;
like if i select a subasm/part in the topasm by hand and change the color of a subasm/part (this doesn't affect the subasm itself)&lt;br /&gt;
&lt;br /&gt;
Anyone knows how to do it from top?&lt;br /&gt;
Can't find it with edgespy...&lt;img width=&quot;20&quot; height=&quot;20&quot; src=&quot;/DesktopModules/NTForums/themes/blue/emoticons/plain.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</description>
			<link>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4112/view/topic/Default.aspx</link>
			<comments>http://jasonnewell.net/Forums/tabid/55/forumid/1/postid/4112/view/topic/Default.aspx</comments>
			<author>solid81</author>
			<pubDate>Thu, 01 Jul 2010 08:08:30 GMT</pubDate>
			<slash:comments>1</slash:comments>
		</item>
	</channel></rss>