<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: SolidWorks Sheetmetal Tips to Flip</title>
	<atom:link href="http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/</link>
	<description>SolidWorks Tips and the Coolest Technology, Product Design, and Social Media in the entire world of 3D CAD.</description>
	<pubDate>Thu, 04 Dec 2008 21:51:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: lol</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-11032</link>
		<dc:creator>lol</dc:creator>
		<pubDate>Sun, 31 Aug 2008 06:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-11032</guid>
		<description>i like boobies</description>
		<content:encoded><![CDATA[<p>i like boobies</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dp4349</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-10576</link>
		<dc:creator>dp4349</dc:creator>
		<pubDate>Mon, 16 Jun 2008 15:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-10576</guid>
		<description>I have been able to extract flat pattern sizes by flattening the part and drawing a box around the edges and making them construction lines.  Set all lines colinear with each edge and dimension them and set them as driven.  set each dimension on to &#34;Length&#34; and the other to &#34;Width&#34; this will allow you to read the length and width of the flat pattern.  Make sure to call the sketch &#34;cutsize&#34; under configuration specific properties creat a value called ie: &#34;Length@cutsize@@Default@Part1&#34; and do the same for &#34;Width&#34;  &#60;br&#62;You will have have to use a Macro to fold and unfold each configuration.  Here is the Macro is use to unfold and fold all configurations:  remember you have do run this macro to be able to update all configurations with thier appropriate flat pattern dimension.&#60;br&#62;&#60;br&#62;Dim swApp As Object&#60;br&#62;Dim Part As Object&#60;br&#62;Dim SelMgr As Object&#60;br&#62;Dim boolstatus As Boolean&#60;br&#62;Dim V As Variant&#60;br&#62;Dim i As Long&#60;br&#62;Dim retval&#60;br&#62;&#60;br&#62;Sub main()&#60;br&#62;&#60;br&#62;Set swApp = CreateObject(&#34;SldWorks.Application&#34;)&#60;br&#62;Set Part = swApp.ActiveDoc&#60;br&#62;Set SelMgr = Part.SelectionManager&#60;br&#62;retval = Part.GetPathName&#60;br&#62;boolstatus = Part.Extension.SelectByID2(&#34;Flat-Pattern1&#34;, &#34;BODYFEATURE&#34;, 0, 0, 0, False, 0, Nothing, 0)&#60;br&#62;Part.EditUnsuppress&#60;br&#62;Part.ClearSelection2 True&#60;br&#62;boolstatus = Part.Extension.SelectByID2(&#34;Flat-Pattern1&#34;, &#34;BODYFEATURE&#34;, 0, 0, 0, False, 0, Nothing, 0)&#60;br&#62;Part.EditSuppress&#60;br&#62;Part.ClearSelection2 True&#60;br&#62;V = swApp.GetConfigurationNames(retval) &#39;since Part = swApp.ActiveDoc; otherwise should be path  filename of doc&#60;br&#62;For i = 0 To UBound(V) &#39;loop for each config name set to variable i&#60;br&#62;boolstatus = Part.Extension.SelectByID2(V(i), &#34;CONFIGURATIONS&#34;, 0, 0, 0, False, 0, Nothing, 0)&#60;br&#62;Part.ShowConfiguration V(i)&#60;br&#62;boolstatus = Part.Extension.SelectByID2(&#34;Flat-Pattern1&#34;, &#34;BODYFEATURE&#34;, 0, 0, 0, False, 0, Nothing, 0)&#60;br&#62;Part.EditUnsuppress&#60;br&#62;Part.ClearSelection2 True&#60;br&#62;boolstatus = Part.Extension.SelectByID2(&#34;Flat-Pattern1&#34;, &#34;BODYFEATURE&#34;, 0, 0, 0, False, 0, Nothing, 0)&#60;br&#62;Part.EditSuppress&#60;br&#62;Part.ClearSelection2 True&#60;br&#62;Next i&#60;br&#62;End Sub</description>
		<content:encoded><![CDATA[<p>I have been able to extract flat pattern sizes by flattening the part and drawing a box around the edges and making them construction lines.  Set all lines colinear with each edge and dimension them and set them as driven.  set each dimension on to &quot;Length&quot; and the other to &quot;Width&quot; this will allow you to read the length and width of the flat pattern.  Make sure to call the sketch &quot;cutsize&quot; under configuration specific properties creat a value called ie: &quot;Length@cutsize@@Default@Part1&quot; and do the same for &quot;Width&quot;  &lt;br&gt;You will have have to use a Macro to fold and unfold each configuration.  Here is the Macro is use to unfold and fold all configurations:  remember you have do run this macro to be able to update all configurations with thier appropriate flat pattern dimension.&lt;br&gt;&lt;br&gt;Dim swApp As Object&lt;br&gt;Dim Part As Object&lt;br&gt;Dim SelMgr As Object&lt;br&gt;Dim boolstatus As Boolean&lt;br&gt;Dim V As Variant&lt;br&gt;Dim i As Long&lt;br&gt;Dim retval&lt;br&gt;&lt;br&gt;Sub main()&lt;br&gt;&lt;br&gt;Set swApp = CreateObject(&quot;SldWorks.Application&quot;)&lt;br&gt;Set Part = swApp.ActiveDoc&lt;br&gt;Set SelMgr = Part.SelectionManager&lt;br&gt;retval = Part.GetPathName&lt;br&gt;boolstatus = Part.Extension.SelectByID2(&quot;Flat-Pattern1&quot;, &quot;BODYFEATURE&quot;, 0, 0, 0, False, 0, Nothing, 0)&lt;br&gt;Part.EditUnsuppress&lt;br&gt;Part.ClearSelection2 True&lt;br&gt;boolstatus = Part.Extension.SelectByID2(&quot;Flat-Pattern1&quot;, &quot;BODYFEATURE&quot;, 0, 0, 0, False, 0, Nothing, 0)&lt;br&gt;Part.EditSuppress&lt;br&gt;Part.ClearSelection2 True&lt;br&gt;V = swApp.GetConfigurationNames(retval) &#39;since Part = swApp.ActiveDoc; otherwise should be path  filename of doc&lt;br&gt;For i = 0 To UBound(V) &#39;loop for each config name set to variable i&lt;br&gt;boolstatus = Part.Extension.SelectByID2(V(i), &quot;CONFIGURATIONS&quot;, 0, 0, 0, False, 0, Nothing, 0)&lt;br&gt;Part.ShowConfiguration V(i)&lt;br&gt;boolstatus = Part.Extension.SelectByID2(&quot;Flat-Pattern1&quot;, &quot;BODYFEATURE&quot;, 0, 0, 0, False, 0, Nothing, 0)&lt;br&gt;Part.EditUnsuppress&lt;br&gt;Part.ClearSelection2 True&lt;br&gt;boolstatus = Part.Extension.SelectByID2(&quot;Flat-Pattern1&quot;, &quot;BODYFEATURE&quot;, 0, 0, 0, False, 0, Nothing, 0)&lt;br&gt;Part.EditSuppress&lt;br&gt;Part.ClearSelection2 True&lt;br&gt;Next i&lt;br&gt;End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dp4349</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-6858</link>
		<dc:creator>dp4349</dc:creator>
		<pubDate>Mon, 16 Jun 2008 15:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-6858</guid>
		<description>I have been able to extract flat pattern sizes by flattening the part and drawing a box around the edges and making them construction lines.  Set all lines colinear with each edge and dimension them and set them as driven.  set each dimension on to "Length" and the other to "Width" this will allow you to read the length and width of the flat pattern.  Make sure to call the sketch "cutsize" under configuration specific properties creat a value called ie: "Length@cutsize@@Default@Part1" and do the same for "Width"  
You will have have to use a Macro to fold and unfold each configuration.  Here is the Macro is use to unfold and fold all configurations:  remember you have do run this macro to be able to update all configurations with thier appropriate flat pattern dimension.

Dim swApp As Object
Dim Part As Object
Dim SelMgr As Object
Dim boolstatus As Boolean
Dim V As Variant
Dim i As Long
Dim retval

Sub main()

Set swApp = CreateObject("SldWorks.Application")
Set Part = swApp.ActiveDoc
Set SelMgr = Part.SelectionManager
retval = Part.GetPathName
boolstatus = Part.Extension.SelectByID2("Flat-Pattern1", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)
Part.EditUnsuppress
Part.ClearSelection2 True
boolstatus = Part.Extension.SelectByID2("Flat-Pattern1", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)
Part.EditSuppress
Part.ClearSelection2 True
V = swApp.GetConfigurationNames(retval) 'since Part = swApp.ActiveDoc; otherwise should be path &#38; filename of doc
For i = 0 To UBound(V) 'loop for each config name set to variable i
boolstatus = Part.Extension.SelectByID2(V(i), "CONFIGURATIONS", 0, 0, 0, False, 0, Nothing, 0)
Part.ShowConfiguration V(i)
boolstatus = Part.Extension.SelectByID2("Flat-Pattern1", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)
Part.EditUnsuppress
Part.ClearSelection2 True
boolstatus = Part.Extension.SelectByID2("Flat-Pattern1", "BODYFEATURE", 0, 0, 0, False, 0, Nothing, 0)
Part.EditSuppress
Part.ClearSelection2 True
Next i
End Sub</description>
		<content:encoded><![CDATA[<p>I have been able to extract flat pattern sizes by flattening the part and drawing a box around the edges and making them construction lines.  Set all lines colinear with each edge and dimension them and set them as driven.  set each dimension on to &#8220;Length&#8221; and the other to &#8220;Width&#8221; this will allow you to read the length and width of the flat pattern.  Make sure to call the sketch &#8220;cutsize&#8221; under configuration specific properties creat a value called ie: &#8220;Length@cutsize@@Default@Part1&#8243; and do the same for &#8220;Width&#8221;<br />
You will have have to use a Macro to fold and unfold each configuration.  Here is the Macro is use to unfold and fold all configurations:  remember you have do run this macro to be able to update all configurations with thier appropriate flat pattern dimension.</p>
<p>Dim swApp As Object<br />
Dim Part As Object<br />
Dim SelMgr As Object<br />
Dim boolstatus As Boolean<br />
Dim V As Variant<br />
Dim i As Long<br />
Dim retval</p>
<p>Sub main()</p>
<p>Set swApp = CreateObject(&#8221;SldWorks.Application&#8221;)<br />
Set Part = swApp.ActiveDoc<br />
Set SelMgr = Part.SelectionManager<br />
retval = Part.GetPathName<br />
boolstatus = Part.Extension.SelectByID2(&#8221;Flat-Pattern1&#8243;, &#8220;BODYFEATURE&#8221;, 0, 0, 0, False, 0, Nothing, 0)<br />
Part.EditUnsuppress<br />
Part.ClearSelection2 True<br />
boolstatus = Part.Extension.SelectByID2(&#8221;Flat-Pattern1&#8243;, &#8220;BODYFEATURE&#8221;, 0, 0, 0, False, 0, Nothing, 0)<br />
Part.EditSuppress<br />
Part.ClearSelection2 True<br />
V = swApp.GetConfigurationNames(retval) &#8217;since Part = swApp.ActiveDoc; otherwise should be path &amp; filename of doc<br />
For i = 0 To UBound(V) &#8216;loop for each config name set to variable i<br />
boolstatus = Part.Extension.SelectByID2(V(i), &#8220;CONFIGURATIONS&#8221;, 0, 0, 0, False, 0, Nothing, 0)<br />
Part.ShowConfiguration V(i)<br />
boolstatus = Part.Extension.SelectByID2(&#8221;Flat-Pattern1&#8243;, &#8220;BODYFEATURE&#8221;, 0, 0, 0, False, 0, Nothing, 0)<br />
Part.EditUnsuppress<br />
Part.ClearSelection2 True<br />
boolstatus = Part.Extension.SelectByID2(&#8221;Flat-Pattern1&#8243;, &#8220;BODYFEATURE&#8221;, 0, 0, 0, False, 0, Nothing, 0)<br />
Part.EditSuppress<br />
Part.ClearSelection2 True<br />
Next i<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swapnil Kulkarni</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1552</link>
		<dc:creator>Swapnil Kulkarni</dc:creator>
		<pubDate>Sun, 30 Dec 2007 17:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1552</guid>
		<description>Hi There,



We are a Indian based company. We have developed a software based on SolidWorks for Sheet Metal. It generates Cutting &#38; Bending drawings for Sheet Metal parts with all information required for costing of Sheet Metal like thickness, no. of pierces, cutting length, no. of bends &#38; surface area etc.



Please let me know you no. so that I can explain you this further.



With regards,



Swapnil.</description>
		<content:encoded><![CDATA[<p>Hi There,</p>
<p>We are a Indian based company. We have developed a software based on SolidWorks for Sheet Metal. It generates Cutting &amp; Bending drawings for Sheet Metal parts with all information required for costing of Sheet Metal like thickness, no. of pierces, cutting length, no. of bends &amp; surface area etc.</p>
<p>Please let me know you no. so that I can explain you this further.</p>
<p>With regards,</p>
<p>Swapnil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swapnil Kulkarni</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-9529</link>
		<dc:creator>Swapnil Kulkarni</dc:creator>
		<pubDate>Sun, 30 Dec 2007 16:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-9529</guid>
		<description>Hi There,&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;We are a Indian based company. We have developed a software based on SolidWorks for Sheet Metal. It generates Cutting  Bending drawings for Sheet Metal parts with all information required for costing of Sheet Metal like thickness, no. of pierces, cutting length, no. of bends  surface area etc.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Please let me know you no. so that I can explain you this further.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;With regards,&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Swapnil.</description>
		<content:encoded><![CDATA[<p>Hi There,</p>
<p>We are a Indian based company. We have developed a software based on SolidWorks for Sheet Metal. It generates Cutting  Bending drawings for Sheet Metal parts with all information required for costing of Sheet Metal like thickness, no. of pierces, cutting length, no. of bends  surface area etc.</p>
<p>Please let me know you no. so that I can explain you this further.</p>
<p>With regards,</p>
<p>Swapnil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-9528</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Mon, 29 Oct 2007 18:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-9528</guid>
		<description>&lt;em&gt;C:Program FilesSolidWorkslangenglishSheet Metal Gauge Tables&lt;/em&gt; and &lt;em&gt;Sheetmetal Bend Tables&lt;/em&gt;. You can take one of those and modify it to what your shop uses. To use these, In the Sheet Metal Properties, select the gauge table in the Sheet Metal Parameters, and select Bend Table in the Bend Allowance pulldown. Your shop may have these values set up already, so check with them first.</description>
		<content:encoded><![CDATA[<p><em>C:Program FilesSolidWorkslangenglishSheet Metal Gauge Tables</em> and <em>Sheetmetal Bend Tables</em>. You can take one of those and modify it to what your shop uses. To use these, In the Sheet Metal Properties, select the gauge table in the Sheet Metal Parameters, and select Bend Table in the Bend Allowance pulldown. Your shop may have these values set up already, so check with them first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1549</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Mon, 29 Oct 2007 18:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1549</guid>
		<description>Hi Ed, you can do this fairly easy with a Gauge Tables and Bend Tables. There's sample ones in &lt;em&gt;C:\Program Files\SolidWorks\lang\english\Sheet Metal Gauge Tables&lt;/em&gt; and &lt;em&gt;\Sheetmetal Bend Tables&lt;/em&gt;. You can take one of those and modify it to what your shop uses. To use these, In the Sheet Metal Properties, select the gauge table in the Sheet Metal Parameters, and select Bend Table in the Bend Allowance pulldown. Your shop may have these values set up already, so check with them first.</description>
		<content:encoded><![CDATA[<p>Hi Ed, you can do this fairly easy with a Gauge Tables and Bend Tables. There&#8217;s sample ones in <em>C:\Program Files\SolidWorks\lang\english\Sheet Metal Gauge Tables</em> and <em>\Sheetmetal Bend Tables</em>. You can take one of those and modify it to what your shop uses. To use these, In the Sheet Metal Properties, select the gauge table in the Sheet Metal Parameters, and select Bend Table in the Bend Allowance pulldown. Your shop may have these values set up already, so check with them first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1548</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Mon, 29 Oct 2007 11:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1548</guid>
		<description>Interesting problem for you....

I have two configurations of a sheet metal part, but i want to use a different thickness for each configuration. That in itself is not the problem - this is easily done by double clicking the part and changing the linked value - but what doesn't change is the bend allowance/deduction. is there a way in which i can change this too?</description>
		<content:encoded><![CDATA[<p>Interesting problem for you&#8230;.</p>
<p>I have two configurations of a sheet metal part, but i want to use a different thickness for each configuration. That in itself is not the problem - this is easily done by double clicking the part and changing the linked value - but what doesn&#8217;t change is the bend allowance/deduction. is there a way in which i can change this too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernest hafner</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-9527</link>
		<dc:creator>Ernest hafner</dc:creator>
		<pubDate>Thu, 11 Oct 2007 14:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-9527</guid>
		<description>Many Thanks to Steve R.  Josh ...&lt;br&gt;Have downloaded zip  have a look.&lt;br&gt;&lt;br&gt;Thank you both for your help.&lt;br&gt;Ernest</description>
		<content:encoded><![CDATA[<p>Many Thanks to Steve R.  Josh &#8230;<br />Have downloaded zip  have a look.</p>
<p>Thank you both for your help.<br />Ernest</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernest hafner</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1543</link>
		<dc:creator>Ernest hafner</dc:creator>
		<pubDate>Thu, 11 Oct 2007 14:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1543</guid>
		<description>Many Thanks to Steve R. &#38; Josh ...
Have downloaded zip &#38; have a look.

Thank you both for your help.
Ernest</description>
		<content:encoded><![CDATA[<p>Many Thanks to Steve R. &amp; Josh &#8230;<br />
Have downloaded zip &amp; have a look.</p>
<p>Thank you both for your help.<br />
Ernest</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-9526</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 10 Oct 2007 20:23:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-9526</guid>
		<description>&lt;a href="http://kcswug.com/" rel="nofollow"&gt;the site&lt;/a&gt; and that &lt;a href="http://kcswug.com/documents/WT%20SWW07%20SM%20Presentation.zip" rel="nofollow"&gt;zip file&lt;/a&gt; (13.4 MB)</description>
		<content:encoded><![CDATA[<p><a href="http://kcswug.com/" rel="nofollow">the site</a> and that <a href="http://kcswug.com/documents/WT%20SWW07%20SM%20Presentation.zip" rel="nofollow">zip file</a> (13.4 MB)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1545</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 10 Oct 2007 20:23:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1545</guid>
		<description>Thanks Steve, here is the direct link to &lt;a href="http://kcswug.com/" rel="nofollow"&gt;the site&lt;/a&gt; and that &lt;a href="http://kcswug.com/documents/WT%20SWW07%20SM%20Presentation.zip" rel="nofollow"&gt;zip file&lt;/a&gt; (13.4 MB)</description>
		<content:encoded><![CDATA[<p>Thanks Steve, here is the direct link to <a href="http://kcswug.com/" rel="nofollow">the site</a> and that <a href="http://kcswug.com/documents/WT%20SWW07%20SM%20Presentation.zip" rel="nofollow">zip file</a> (13.4 MB)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve R.</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1544</link>
		<dc:creator>Steve R.</dc:creator>
		<pubDate>Wed, 10 Oct 2007 20:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1544</guid>
		<description>Ernest -
If you go to the Kansas City SolidWorks User Group website (kcswug.com), Wayne put his Most Excellent SWW2007 Sheetmetal Presentation in a zip file you can download. On page 107 of that presentation (did I mention how excellent it was?) there is a description of a method to extract flat pattern dimensions. I know it's not "automatic," but it is parametric, so there is certainly value in that.</description>
		<content:encoded><![CDATA[<p>Ernest -<br />
If you go to the Kansas City SolidWorks User Group website (kcswug.com), Wayne put his Most Excellent SWW2007 Sheetmetal Presentation in a zip file you can download. On page 107 of that presentation (did I mention how excellent it was?) there is a description of a method to extract flat pattern dimensions. I know it&#8217;s not &#8220;automatic,&#8221; but it is parametric, so there is certainly value in that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernest hafner</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1547</link>
		<dc:creator>Ernest hafner</dc:creator>
		<pubDate>Tue, 09 Oct 2007 19:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1547</guid>
		<description>Thanks for you tip. However, I need more than Thickness.
I also need length &#38; width. What I am trying to do is create a somewhat
automated cut list for thousands of sheet metal parts used in a large
assembly. With help of "ToolWorks" (a third party SolidWorks Partner),
I can genarate a Top level BOM. From Assy. Model. ToolWorks also has the ability to automaticaly extract values from d1@sketch1, d2@sketch2, etc.

Since SolidWorks already knows the size of the flat patter, I was looking
for x1@flat-patern1, y2@flat-patern1, z1@flat-patern1 and extract
these values via VB macro. (provideing model variables even exits)
I don't know. .. but it looks like NOT!!

Failing that, I'm stuck having to go back to a couple of thousnad parts
and measuring the flat patern. What shit when I know SW already calculated
the sizes but can't get at them.

This makes sheet metal functions very poor in SW a way too maual.</description>
		<content:encoded><![CDATA[<p>Thanks for you tip. However, I need more than Thickness.<br />
I also need length &amp; width. What I am trying to do is create a somewhat<br />
automated cut list for thousands of sheet metal parts used in a large<br />
assembly. With help of &#8220;ToolWorks&#8221; (a third party SolidWorks Partner),<br />
I can genarate a Top level BOM. From Assy. Model. ToolWorks also has the ability to automaticaly extract values from d1@sketch1, d2@sketch2, etc.</p>
<p>Since SolidWorks already knows the size of the flat patter, I was looking<br />
for x1@flat-patern1, y2@flat-patern1, z1@flat-patern1 and extract<br />
these values via VB macro. (provideing model variables even exits)<br />
I don&#8217;t know. .. but it looks like NOT!!</p>
<p>Failing that, I&#8217;m stuck having to go back to a couple of thousnad parts<br />
and measuring the flat patern. What shit when I know SW already calculated<br />
the sizes but can&#8217;t get at them.</p>
<p>This makes sheet metal functions very poor in SW a way too maual.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-9525</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 09 Oct 2007 16:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-9525</guid>
		<description>Thanks Alex. Custom Properties are definitely the way to go. Great to use as a check also.</description>
		<content:encoded><![CDATA[<p>Thanks Alex. Custom Properties are definitely the way to go. Great to use as a check also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1542</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 09 Oct 2007 16:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1542</guid>
		<description>Thanks Alex. Custom Properties are definitely the way to go. Great to use as a check also.</description>
		<content:encoded><![CDATA[<p>Thanks Alex. Custom Properties are definitely the way to go. Great to use as a check also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1541</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 08 Oct 2007 14:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1541</guid>
		<description>For Thickness;
Go to File &#62; Properties &#62; Custom tab

Under Property Name type 'Sheet Thickness' or similar.
Click in the Value column and select 'thickness'.
The Value column should now show your sheet thickness.

The value can now be linked into your drawing notes etc.
Hope this helps.</description>
		<content:encoded><![CDATA[<p>For Thickness;<br />
Go to File &gt; Properties &gt; Custom tab</p>
<p>Under Property Name type &#8216;Sheet Thickness&#8217; or similar.<br />
Click in the Value column and select &#8216;thickness&#8217;.<br />
The Value column should now show your sheet thickness.</p>
<p>The value can now be linked into your drawing notes etc.<br />
Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernest hafner</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-9524</link>
		<dc:creator>Ernest hafner</dc:creator>
		<pubDate>Fri, 05 Oct 2007 17:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-9524</guid>
		<description>What I desperately need is a way to extract the&lt;br&gt;sheet metal size of the flat pattern. There is no information provided by solidworks except that I know solidworks must have a X@flatpatern, Y@flatpatern,  Z@flatpatern.&lt;br&gt;(Thickness, Width, Length)&lt;br&gt;&lt;br&gt;Otherwise, the geometry could not exists.&lt;br&gt;&lt;br&gt;QUESTION: What are the three (x,y,z) variables are?&lt;br&gt;&lt;br&gt;                                  or&lt;br&gt;&lt;br&gt;Is there a macro to obtain these values  add to properties</description>
		<content:encoded><![CDATA[<p>What I desperately need is a way to extract the<br />sheet metal size of the flat pattern. There is no information provided by solidworks except that I know solidworks must have a X@flatpatern, Y@flatpatern,  Z@flatpatern.<br />(Thickness, Width, Length)</p>
<p>Otherwise, the geometry could not exists.</p>
<p>QUESTION: What are the three (x,y,z) variables are?</p>
<p>                                  or</p>
<p>Is there a macro to obtain these values  add to properties</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernest hafner</title>
		<link>http://www.solidsmack.com/solidworks-sheetmetal-tips-to-flip/2007-10-04/#comment-1546</link>
		<dc:creator>Ernest hafner</dc:creator>
		<pubDate>Fri, 05 Oct 2007 17:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.solidsmack.com/?p=457#comment-1546</guid>
		<description>What I desperately need is a way to extract the
sheet metal size of the flat pattern. There is no information provided by solidworks except that I know solidworks must have a X@flatpatern, Y@flatpatern, &#38; Z@flatpatern.
(Thickness, Width, Length)

Otherwise, the geometry could not exists.

QUESTION: What are the three (x,y,z) variables are?

                                  or

Is there a macro to obtain these values &#38; add to properties</description>
		<content:encoded><![CDATA[<p>What I desperately need is a way to extract the<br />
sheet metal size of the flat pattern. There is no information provided by solidworks except that I know solidworks must have a X@flatpatern, Y@flatpatern, &amp; Z@flatpatern.<br />
(Thickness, Width, Length)</p>
<p>Otherwise, the geometry could not exists.</p>
<p>QUESTION: What are the three (x,y,z) variables are?</p>
<p>                                  or</p>
<p>Is there a macro to obtain these values &amp; add to properties</p>
]]></content:encoded>
	</item>
</channel>
</rss>
