<?xml version="1.0" encoding="windows-1250" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>CAD F&#243;rum : VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : iLogic a ETO : VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU]]></description>
  <pubDate>Sat, 16 May 2026 13:04:55 +0000</pubDate>
  <lastBuildDate>Mon, 22 Oct 2018 13:05:33 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum/RSS_post_feed.asp?TID=27870</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD F&#243;rum]]></title>
   <url>https://www.cadforum.cz/forum/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum/</link>
  </image>
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : D&#283;kuji za radu, zkus&#237;m to. ]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114295&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114295</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=4903">Lukáš Záruba</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 22.říj.2018 v 13:05<br /><br />Děkuji za radu, zkusím to.]]>
   </description>
   <pubDate>Mon, 22 Oct 2018 13:05:33 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114295&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114295</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU :   Tady u&#382; je asi pot&#345;eba p&#345;em&#253;&#353;let...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114291&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114291</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9996">Navara</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 22.říj.2018 v 12:00<br /><br />Tady už je asi potřeba přemýšlet trochu víc jako programátor. To co bych doporučil je začít využívat funkce místo psaní přímočarého skriptu. Vede to potom na mnohem čitelnější a kratší kód, než v prvním případě.<div></div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>Sub Main()<br>&nbsp;&nbsp;&nbsp; Dim doc As Document = ThisDoc.Document</div><div>&nbsp;&nbsp;&nbsp; SetTitle(doc)<br>End Sub</div><div>Private Sub SetTitle(doc As Document)<br>&nbsp;&nbsp;&nbsp; Dim delka As String = GetParameterValue(doc, "DÉLKA")<br>&nbsp;&nbsp;&nbsp; Dim prednazev As String = GetPropertyValue(doc, "PREDNAZEV")<br>&nbsp;&nbsp;&nbsp; Dim typ As String = GetPropertyValue(doc, "TYP")</div><div>&nbsp;&nbsp;&nbsp; doc.PropertySets("{F29F85E0-4FF9-1068-AB91-08002B27B3D9}")("Title").Value = String.Format("{0} {1}-{2}", prednazev, typ, delka)</div><div>End Sub</div><div>Private Function GetPropertyValue(doc As Document, propertyName As String) As String<br>&nbsp;&nbsp;&nbsp; Dim userDefinedProperties As PropertySet = doc.PropertySets("{D5CDD505-2E9C-101B-9397-08002B2CF9AE}")<br>&nbsp;&nbsp;&nbsp; Dim prop As Inventor.Property<br>&nbsp;&nbsp;&nbsp; Try<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; prop = userDefinedProperties(propertyName)<br>&nbsp;&nbsp;&nbsp; Catch ex As Exception<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; prop = userDefinedProperties.Add("", propertyName)<br>&nbsp;&nbsp;&nbsp; End Try<br>&nbsp;&nbsp;&nbsp; Return prop.Value.ToString()<br>End Function</div><div>Private Function GetParameterValue(doc As Document, paramName As String) As String<br>&nbsp;&nbsp;&nbsp; Dim part As PartDocument = doc<br>&nbsp;&nbsp;&nbsp; Dim userParameters As UserParameters = part.ComponentDefinition.Parameters.UserParameters<br>&nbsp;&nbsp;&nbsp; Dim param As Parameter<br>&nbsp;&nbsp;&nbsp; Try<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; param = UserParameters(paramName)<br>&nbsp;&nbsp;&nbsp; Catch ex As Exception<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; userParameters.AddByValue(paramName, 0, "mm")<br>&nbsp;&nbsp;&nbsp; End Try</div><div>&nbsp;&nbsp;&nbsp; 'Nastavit propisovani parametru do iVlastnosti<br>&nbsp;&nbsp;&nbsp; param.ExposedAsProperty = True</div><div>&nbsp;&nbsp;&nbsp; Dim value As Double = param.ModelValue * 10<br>&nbsp;&nbsp;&nbsp; Return String.Format("{0} mm", value)</div><div>End Function</div><div></div><div></pre></td></tr></table></div><div>&nbsp;</div><div>Další možností je využití interní funkce Inventoru na skládání hodnot iVlastností pomocí výrazů. Tady stačí ten kód spustit jenom jednou a potom už se hodnota Title mění automaticky při změně jedné z použitých iVlastností.</div><div>&nbsp;</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><br>Sub Main()<br>&nbsp;&nbsp;&nbsp; Dim doc As Document = ThisDoc.Document<br>&nbsp;&nbsp;&nbsp; SetTitleAsExpression(doc)<br>End Sub</div><div>Private Sub SetTitleAsExpression(doc As Document)<br>&nbsp;&nbsp;&nbsp; Dim delka As String = GetParameterValue(doc, "DÉLKA")<br>&nbsp;&nbsp;&nbsp; Dim prednazev As String = GetPropertyValue(doc, "PREDNAZEV")<br>&nbsp;&nbsp;&nbsp; Dim typ As String = GetPropertyValue(doc, "TYP")</div><div>&nbsp;&nbsp; doc.PropertySets("{F29F85E0-4FF9-1068-AB91-08002B27B3D9}")("Title").Expression = "=&lt;PREDNAZEV&gt; &lt;TYP&gt;-&lt;DÉLKA&gt;"</div><div>End Sub</div><div></pre></td></tr></table></div><div>&nbsp;</div><div>&nbsp;</div><span style="font-size:10px"><br /><br />Upravil Navara - 22.říj.2018 v 12:10</span>]]>
   </description>
   <pubDate>Mon, 22 Oct 2018 12:00:39 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114291&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114291</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : No ale j&#225; pot&#345;ebuju aby mi ilogic...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114281&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114281</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=4903">Lukáš Záruba</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 21.říj.2018 v 18:49<br /><br />No ale já potřebuju aby mi ilogic prozkoumal jestli v modelu je a pokud není tak vložil:<div><br></div><div>1x uživatlský parametr "DÉLKA"</div><div>a</div><div>2X Uživatelskou ilvastnost "PREDNAZEV" + "TYP"</div><div><br></div><div>zbytek tohoto pravidla když když je v modelu kde tyto věci jsou funguje bez chyby&nbsp;</div><div><pre style="font-family: &quot;Courier New&quot;, Courier; font-size: 10pt; color: rgb0, 68, 68; : rgb247, 247, 249;"><span style="color: rgb128, 0, 128; font-weight: bold;">iProperties</span>.<span style="color: rgb128, 0, 128; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">Summary</span><span style="color: rgb0, 128, 128;">"</span>, <span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">Title</span><span style="color: rgb0, 128, 128;">"</span><span style="font-weight: bold;">)</span> <span style="font-weight: bold;">=</span> <span style="color: rgb128, 0, 128; font-weight: bold;">iProperties</span>.<span style="color: rgb128, 0, 128; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">Custom</span><span style="color: rgb0, 128, 128;">"</span>, <span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">PREDNAZEV</span><span style="color: rgb0, 128, 128;">"</span><span style="font-weight: bold;">)</span><span style="color: rgb255, 0, 0; font-weight: bold;">&amp;</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;"> </span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb255, 0, 0; font-weight: bold;">&amp;</span><span style="color: rgb128, 0, 128; font-weight: bold;">iProperties</span>.<span style="color: rgb128, 0, 128; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">Custom</span><span style="color: rgb0, 128, 128;">"</span>, <span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">TYP</span><span style="color: rgb0, 128, 128;">"</span><span style="font-weight: bold;">)</span><span style="color: rgb255, 0, 0; font-weight: bold;">&amp;</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;"> - </span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb255, 0, 0; font-weight: bold;">&amp;</span><span style="color: rgb128, 0, 128; font-weight: bold;">Parameter</span><span style="font-weight: bold;">(</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">D&#65533;LKA</span><span style="color: rgb0, 128, 128;">"</span><span style="font-weight: bold;">)</span><span style="color: rgb255, 0, 0; font-weight: bold;">&amp;</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb0, 128, 128;">mm</span><span style="color: rgb0, 128, 128;">"</span><span style="color: rgb128, 128, 128; font-style: italic;">'</span><span style="color: rgb128, 128, 128; font-style: italic;">PREDNAZEV - MUSÍ BÝT V UŽVATELSKÝCH IVLASTNOSTECH V MODELU' </span><span style="color: rgb128, 128, 128; font-style: italic;">'</span><span style="color: rgb128, 128, 128; font-style: italic;">TYP - MUSÍ BÝT V UŽVATELSKÝCH IVLASTNOSTECH V MODELU' </span><span style="color: rgb128, 128, 128; font-style: italic;">'</span><span style="color: rgb128, 128, 128; font-style: italic;">DÉLKA - MUSÍ BÝT PARAMETR DÉLKY DÍLU'</span></pre></div>]]>
   </description>
   <pubDate>Sun, 21 Oct 2018 18:49:48 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114281&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114281</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : ne, to nastaven&#237; Title mus&#237;te...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114280&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114280</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 21.říj.2018 v 18:43<br /><br />ne, to nastavení Title musíte mít v tom Try<br /><br />konstrukce Try-Catch je v principu:<br /><br /><em>zkus tohleto, a když to selže, tak proveď tohleto</em>]]>
   </description>
   <pubDate>Sun, 21 Oct 2018 18:43:48 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114280&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114280</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : Tak&#382;e n&#283;jak takhle? ale tohle...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114279&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114279</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=4903">Lukáš Záruba</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 21.říj.2018 v 18:36<br /><br />Takže nějak takhle? ale tohle mi nějak nefunguje. nevím kde je chyba.<div><br></div><div><pre><span style="color: #FF0000; font-weight: bold;">Try</span>  <span style="color: #800000;">p</span> <span style="font-weight: bold;">=</span> <span style="color: #800080; font-weight: bold;">Parameter</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">DÉLKA</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">Catch</span>  <span style="color: #800000;">oUserParams</span>.<span style="color: #800000;">AddByValue</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">DÉLKA</span><span style="color: #008080;">"</span>,<span style="color: #008080;">""</span>,<span style="color: #008080;">"</span><span style="color: #008080;">mm</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">End</span> <span style="color: #FF0000; font-weight: bold;">Try</span><span style="color: #FF0000; font-weight: bold;">Try</span> <span style="color: #800000;">prop</span> <span style="font-weight: bold;">=</span> <span style="color: #800000;">customPropertySet</span>.<span style="color: #800000;">Item</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">PREDNAZEV</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">Catch</span> <span style="color: #800000;">customPropertySet</span>.<span style="color: #800000;">Add</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Custom</span><span style="color: #008080;">"</span>,<span style="color: #008080;">"</span><span style="color: #008080;">PREDNAZEV</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">End</span> <span style="color: #FF0000; font-weight: bold;">Try</span><span style="color: #FF0000; font-weight: bold;">Try</span> <span style="color: #800000;">prop</span> <span style="font-weight: bold;">=</span> <span style="color: #800000;">customPropertySet</span>.<span style="color: #800000;">Item</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">TYP</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">Catch</span> <span style="color: #800000;">customPropertySet</span>.<span style="color: #800000;">Add</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Custom</span><span style="color: #008080;">"</span>,<span style="color: #008080;">"</span><span style="color: #008080;">TYP</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">End</span> <span style="color: #FF0000; font-weight: bold;">Try</span><span style="color: #800080; font-weight: bold;">iProperties</span>.<span style="color: #800080; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Summary</span><span style="color: #008080;">"</span>, <span style="color: #008080;">"</span><span style="color: #008080;">Title</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span> <span style="font-weight: bold;">=</span> <span style="color: #800080; font-weight: bold;">iProperties</span>.<span style="color: #800080; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Custom</span><span style="color: #008080;">"</span>, <span style="color: #008080;">"</span><span style="color: #008080;">PREDNAZEV</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #008080;">"</span><span style="color: #008080;"> </span><span style="color: #008080;">"</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #800080; font-weight: bold;">iProperties</span>.<span style="color: #800080; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Custom</span><span style="color: #008080;">"</span>, <span style="color: #008080;">"</span><span style="color: #008080;">TYP</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #008080;">"</span><span style="color: #008080;"> - </span><span style="color: #008080;">"</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #800080; font-weight: bold;">Parameter</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">D&#65533;LKA</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #008080;">"</span><span style="color: #008080;">mm</span><span style="color: #008080;">"</span><span style="color: #808080; font-style: italic;">'</span><span style="color: #808080; font-style: italic;">PREDNAZEV - MUSÍ BÝT V UŽVATELSKÝCH IVLASTNOSTECH V MODELU' </span><span style="color: #808080; font-style: italic;">'</span><span style="color: #808080; font-style: italic;">TYP - MUSÍ BÝT V UŽVATELSKÝCH IVLASTNOSTECH V MODELU' </span><span style="color: #808080; font-style: italic;">'</span><span style="color: #808080; font-style: italic;">DÉLKA - MUSÍ BÝT PARAMETR DÉLKY DÍLU' </span><span style="color: #808080; font-style: italic;"></span></pre></div>]]>
   </description>
   <pubDate>Sun, 21 Oct 2018 18:36:51 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114279&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114279</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : Rozum&#237;m. Kdy&#382; si to skl&#225;d&#225;n&#237; Title...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114276&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114276</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 21.říj.2018 v 09:57<br /><br />Rozumím. Když si to skládání Title dáte do větve Try (té stávající nebo nové), můžete tím ošetřit stav, kdy parametr neexistuje a zobrazit třeba upozornění (MsgBox).]]>
   </description>
   <pubDate>Sun, 21 Oct 2018 09:57:46 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114276&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114276</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : Dosud jsem to pou&#382;&#237;val jen v nov&#253;ch...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114273&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114273</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=4903">Lukáš Záruba</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 20.říj.2018 v 22:17<br /><br />Dosud jsem to používal jen v nových projektech kde mám již v šabloně připraveny:<div><br></div><div>uživatelské ivlastnosti: "PREDNAZEV" ; "TYP"</div><div>uživatelský parametr: Délka</div><div><br></div><div>Teď ale musím pracovat i se staršími projekty, které to nemají tahle přesně nastavený a proto chci pomocí ilogicu automaticky před vlastním složením názvu zkontrolovat zda jsou nebo je vytvořit.</div><div>&nbsp;&nbsp;</div>]]>
   </description>
   <pubDate>Sat, 20 Oct 2018 22:17:51 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114273&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114273</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : To je na v&#225;s. Nebo se generuj&#237;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114265&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114265</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 20.říj.2018 v 14:37<br /><br />To je na vás. Nebo se generují také nějak automaticky? Nebo jen chcete zkontrolovat, zda už je uživatel správně vytvořil?]]>
   </description>
   <pubDate>Sat, 20 Oct 2018 14:37:32 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114265&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114265</guid>
  </item> 
  <item>
   <title><![CDATA[VLOŽENÍ VÍCE UŽIVATELSKÝCH IVLASTNOSTÍ NAJEDNOU : Zdrav&#237;m,M&#225;m Ilogic kter&#253; mi poskl&#225;d&#225;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114262&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114262</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=4903">Lukáš Záruba</a><br /><strong>Předmět:</strong> 27870<br /><strong>Zasláno:</strong> 20.říj.2018 v 10:55<br /><br />Zdravím,<div><br></div><div>Mám Ilogic který mi poskládá název "Title" z už.vl.+rozměrů ale nevím jak napsat aby před složením Názvu vytvořil všechny ivlastnosti a parametry do modelu. (&nbsp;</div><div><br></div><div><pre><span style="color: #FF0000; font-weight: bold;">Dim</span> <span style="color: #800000;">propertyName</span> <span style="color: #FF0000; font-weight: bold;">As</span> <span style="color: #FF0000; font-weight: bold;">String</span> <span style="font-weight: bold;">=</span> <span style="color: #008080;">"</span><span style="color: #008080;">PREDNAZEV</span><span style="color: #008080;">"</span><span style="color: #FF0000; font-weight: bold;">Dim</span> <span style="color: #800000;">propertyValue</span> <span style="color: #FF0000; font-weight: bold;">As</span> <span style="color: #FF0000; font-weight: bold;">String</span> <span style="font-weight: bold;">=</span> <span style="color: #008080;">""</span><span style="color: #800000;">customPropertySet</span> <span style="font-weight: bold;">=</span> <span style="color: #800080; font-weight: bold;">ThisDoc</span>.<span style="color: #800080; font-weight: bold;">Document</span>.<span style="color: #800000;">PropertySets</span>.<span style="color: #800000;">Item</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Inventor User Defined Properties</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">Try</span>      <span style="color: #800000;">prop</span> <span style="font-weight: bold;">=</span> <span style="color: #800000;">customPropertySet</span>.<span style="color: #800000;">Item</span><span style="font-weight: bold;">(</span><span style="color: #800000;">propertyName</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">Catch</span>      <span style="color: #800000;">customPropertySet</span>.<span style="color: #800000;">Add</span><span style="font-weight: bold;">(</span><span style="color: #008080;">""</span>, <span style="color: #800000;">propertyName</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">End</span> <span style="color: #FF0000; font-weight: bold;">Try</span><span style="color: #800080; font-weight: bold;">iProperties</span>.<span style="color: #800080; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Summary</span><span style="color: #008080;">"</span>, <span style="color: #008080;">"</span><span style="color: #008080;">Title</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span> <span style="font-weight: bold;">=</span> <span style="color: #800080; font-weight: bold;">iProperties</span>.<span style="color: #800080; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Custom</span><span style="color: #008080;">"</span>, <span style="color: #008080;">"</span><span style="color: #008080;">PREDNAZEV</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #008080;">"</span><span style="color: #008080;"> </span><span style="color: #008080;">"</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #800080; font-weight: bold;">iProperties</span>.<span style="color: #800080; font-weight: bold;">Value</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">Custom</span><span style="color: #008080;">"</span>, <span style="color: #008080;">"</span><span style="color: #008080;">TYP</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #008080;">"</span><span style="color: #008080;"> - </span><span style="color: #008080;">"</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #800080; font-weight: bold;">Parameter</span><span style="font-weight: bold;">(</span><span style="color: #008080;">"</span><span style="color: #008080;">DÉLKA</span><span style="color: #008080;">"</span><span style="font-weight: bold;">)</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="color: #008080;">"</span><span style="color: #008080;">mm</span><span style="color: #008080;">"</span><span style="color: #808080; font-style: italic;">'</span><span style="color: #808080; font-style: italic;">PREDNAZEV - MUSÍ BÝT V UŽVATELSKÝCH IVLASTNOSTECH V MODELU' </span></pre><pre>'<span style="font-family: Verdana, Arial, Helvetica, sans-serif; color: rgb128, 128, 128; font-style: italic;">typ - MUSÍ BÝT V UŽVATELSKÝCH IVLASTNOSTECH V MODELU' </span></pre><pre><span style="color: #808080; font-style: italic;">'</span><span style="color: #808080; font-style: italic;">DÉLKA - MUSÍ BÝT PARAMETR DÉLKY DÍLU' </span></pre></div>]]>
   </description>
   <pubDate>Sat, 20 Oct 2018 10:55:03 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=27870&amp;PID=114262&amp;title=vlozeni-vice-uzivatelskych-ivlastnosti-najednou#114262</guid>
  </item> 
 </channel>
</rss>