<?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 : Výměna stylu písma</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : CAD programov&#225;n&#237; : Výměna stylu písma]]></description>
  <pubDate>Sun, 28 Jun 2026 03:08:23 +0000</pubDate>
  <lastBuildDate>Thu, 19 Jun 2008 11:30:00 +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=6647</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[Výměna stylu písma : D&#237;ky za dopln&#283;n&#237; cyklu.   Tu&#353;il...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=6647&amp;PID=32352&amp;title=vymena-stylu-pisma#32352</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=6582">j.ku</a><br /><strong>Předmět:</strong> 6647<br /><strong>Zasláno:</strong> 19.čer.2008 v 11:30<br /><br />&nbsp;&nbsp;Díky za doplnění cyklu. <DIV>&nbsp; Tušil jsem, že tam asi bude chyba. </DIV><DIV>&nbsp; I na fóru se mluvilo o tom, že jediná česky psaná učebnice je z minulého století.&nbsp;Vzhledem ke skutečnosti, že&nbsp;je zde jako autor&nbsp;uveden&nbsp;pan Jiří Hlavenka , který prodáním nakladatelství "Computer press" (podle zdrojů z&nbsp; internetu) bude asi za vodou.</DIV><DIV>&nbsp; ....&nbsp;asi ho už nebude&nbsp;trápit problematika Autolispu .... a případné zdroje informací a tipy bude potřebné hledat někde jinde ....</DIV>]]>
   </description>
   <pubDate>Thu, 19 Jun 2008 11:30:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=6647&amp;PID=32352&amp;title=vymena-stylu-pisma#32352</guid>
  </item> 
  <item>
   <title><![CDATA[Výměna stylu písma : Ale jo, funguje taky, jen je t&#345;eba...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=6647&amp;PID=32335&amp;title=vymena-stylu-pisma#32335</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=3641">chlebovsky</a><br /><strong>Předmět:</strong> 6647<br /><strong>Zasláno:</strong> 19.čer.2008 v 08:22<br /><br />Ale jo, funguje taky, jen je třeba tu změnu hodit do cyklu.<DIV><FONT color=#000000><FONT face="Times New Roman">(setq vss (ssget "X" '((7 . "STANDARD"))))<SPAN style="mso-tab-count: 2">&nbsp;</SPAN></FONT></FONT></DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2">tímto vytvoříte pouze seznam entit. z toho pak musíte brát položku po položce a měnit.</SPAN></FONT></FONT></DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2"></SPAN></FONT></FONT>&nbsp;</DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2">Mělo by to vypadat nějak takto :</SPAN></FONT></FONT></DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2">(defun C:NP-S1 (/)<BR>&nbsp; ;&nbsp; Hromadná výměna textových stylů<BR>&nbsp; ;&nbsp; Nefunguje např. na texty vnořené v blokách</SPAN></FONT></FONT></DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2">&nbsp; (setq vss (ssget "X" '((7 . "STANDARD"))))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Vybrány entity se stylem písma "STANDARD"<BR>&nbsp; (setq vsl (sslength vss))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Zjistí počet entit ve výběrové množině<BR>&nbsp; (setq i 0)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Počítadlo<BR>&nbsp; (repeat vsl&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Začátek cyklu<BR>&nbsp;&nbsp;&nbsp; (setq ent (entget (ssname vss i)))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; Zjistí informace o i-té entitě<BR>&nbsp;&nbsp;&nbsp; (setq oldtext (assoc 7 ent))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; (7 . "STANDARD")<BR>&nbsp;&nbsp;&nbsp; (setq newtext (cons 7 "ISOCP-BPVL"))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; (7 . "ISOCP-BPVL")<BR>&nbsp;&nbsp;&nbsp; (setq ent (subst newtext oldtext ent))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Náhrada atomů<BR>&nbsp;&nbsp;&nbsp; (entmod ent)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Oorava entity<BR>&nbsp;&nbsp;&nbsp; (setq i (1+ i))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Navýšení počítadla<BR>&nbsp; )&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;&nbsp; Konec cyklu<BR>)</SPAN></FONT></FONT></DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2"></SPAN></FONT></FONT>&nbsp;</DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2">při náčítání toho oldtext je lepší to přímo vytáhnout z ent než natvrdo přiřadit, je tady menší ryziko selhání velkých a malých písmen protože ten ssget nebere ohled na malá a velká písmena, furt je to jeden&nbsp; zázev.</SPAN></FONT></FONT></DIV><DIV><FONT color=#000000><FONT face="Times New Roman"><SPAN style="mso-tab-count: 2">A pak v tom (cons 7 "STANDARD") je problém protože toto už zohledňuje velká a malá, proto je lepší to přímo tahat z toho seznamu pomoci (assoc 7 ent)</SPAN></FONT></FONT></DIV>]]>
   </description>
   <pubDate>Thu, 19 Jun 2008 08:22:52 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=6647&amp;PID=32335&amp;title=vymena-stylu-pisma#32335</guid>
  </item> 
  <item>
   <title><![CDATA[Výměna stylu písma : Existuje n&#283;jak&#253; inteligentn&#237; zp&#367;sob,...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=6647&amp;PID=32314&amp;title=vymena-stylu-pisma#32314</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=6582">j.ku</a><br /><strong>Předmět:</strong> 6647<br /><strong>Zasláno:</strong> 18.čer.2008 v 16:07<br /><br /><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>Existuje nějaký inteligentní způsob, jak je možné pomocí příkazu, nebo lispovského&nbsp;prográmku změnit styl písma v daném souboru? <?:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>&nbsp;<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>Hladiny lze převést pomocí příkazu "_laytrans"<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>&nbsp;<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>Označený kótovací styl "k1_10"&nbsp;lze převést na požadovaný styl&nbsp; "ČEZ-EDU T 2.5-10" s využitím lispu&nbsp; např.:&nbsp;<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>&nbsp;<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>(progn<BR>&nbsp;&nbsp;&nbsp;&nbsp; (prompt "Existuje kótovací styl (k1_10). " )<BR>&nbsp;&nbsp;&nbsp;&nbsp; (setq vkost (ssget "X" '((3 . "k1_10"))))<BR>&nbsp;&nbsp;&nbsp;&nbsp; (command "-dimstyle" "Obnov" "ČEZ-EDU T 2.5-10" "")<BR>&nbsp;&nbsp;&nbsp;&nbsp; (command "-dimstyle" "Použij" "Předchozí" "")<BR>&nbsp;&nbsp;&nbsp;&nbsp; )<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><o:p><FONT face="Times New Roman" color=#000000 size=2>&nbsp;</FONT></o:p></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>Styl písma naposledy<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>vybrané entity lze změnit např. pomocí:<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><o:p><FONT face="Times New Roman" color=#000000 size=2>&nbsp;</FONT></o:p></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>(defun C:Moss ( )<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq ed (entget (entlast)))<SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(1 . "123") (7 . "ISOCP-BPVL") (210 0.0 0.0 1.0)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq oldtext (assoc 7 ed))<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(1 . "123")<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq newtext (cons 7 "ISOCP-BPVL"))<SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(1 . "Nový text")<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq ed (subst newtext oldtext ed))<SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>; (Náhrada atomů)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(entmod ed) <SPAN style="mso-tab-count: 3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>; (Výměna stylů )<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><o:p><FONT face="Times New Roman" color=#000000 size=2>&nbsp;</FONT></o:p></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>Hromadná výměna stylů písma ovšem nefunguje.<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>(defun C:NP-S1 ( )<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>Výměna kótovacích stylů<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(progn<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq vss (ssget "X" '((7 . "STANDARD"))))<SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>Vybrány entity se stylem písma "STANDARD"<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(prompt "Existuje kótovací styl (STANDARD). " )<SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq oldtext (cons 7 "STANDARD"))<SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(7 . "STANDARD")<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq newtext (cons 7 "ISOCP-BPVL"))<SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>;<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(7 . "ISOCP-BPVL")<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(setq vss (subst newtext oldtext vss))<SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>; (Náhrada atomů)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>(entmod vss)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2><SPAN style="mso-spacerun: yes">&nbsp; </SPAN>)<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><o:p><FONT face="Times New Roman" color=#000000 size=2>&nbsp;</FONT></o:p></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>Máte prosím někdo nějaký nápad? Díky.<o:p></o:p></FONT></FONT></FONT></SPAN></P><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 7.5pt"><FONT color=#000000><FONT face="Times New Roman"><FONT size=2>&nbsp;<o:p></o:p></FONT></FONT></FONT></SPAN></P>]]>
   </description>
   <pubDate>Wed, 18 Jun 2008 16:07:15 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=6647&amp;PID=32314&amp;title=vymena-stylu-pisma#32314</guid>
  </item> 
 </channel>
</rss>