<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[结构CAD]]></title> 
    <link>http://www.jgcad.com/</link> 
    <description><![CDATA[在这里讨论结构设计与结构CAD软件开发]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2010, 结构CAD]]></copyright> 
    <webMaster><![CDATA[wujimmy.com@gmail.com (wuJimmy)]]></webMaster> 
    <generator>LBS v2046</generator> 
    <pubDate>Wed, 10 Mar 2010 21:45:08 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[批量打印PLT文件]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=338]]></link> 
      <category><![CDATA[办公软件]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Sat, 22 Aug 2009 22:28:05 +0800</pubDate> 
      <description><![CDATA[打印PLT.bat<div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content">FOR %%C IN (*.plt) DO copy %%C lpt1 &amp;&amp; ping 1 -n 1 -w 600000 2&gt;nul 1&gt;nul<br />pause</div></div>]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=338]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[关联标注相关内容]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=337]]></link> 
      <category><![CDATA[CAD应用]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Mon, 03 Aug 2009 21:36:39 +0800</pubDate> 
      <description><![CDATA[<div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content">关键是这个,解除CAD标注关联.<br />标注关联的时候,移动图的时候会乱掉.<br />解除标注的关联命令——DIMDISASSOCIATE </div></div>摘自《AutoCAD2002高级应用技术》书稿。 <br /><br />15.1 关联标注 <br />AutoCAD2002添加了两种新的尺寸标注的修饰功能，在使用这些功能时，用户不需要设置标注比例，也不用创建特殊的图层。这是却又是实用价值的功能，应当充分利用。在尺寸与图线之间，与尺寸关联的对象为主动控制者： <br />图形驱动关联标注： <br />将标注与相关对象或对象上的特征建立关联，对这个对象做编辑操后，将自动更新相关联标注中各个结构，如果使用默认标注值，也能跟随改变成新的标注值。 <br />]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=337]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[vba用使用VLAX]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=336]]></link> 
      <category><![CDATA[CAD开发]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Thu, 16 Jul 2009 12:49:53 +0800</pubDate> 
      <description><![CDATA[<div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content">&#39; VLAX.CLS v2.0 (Last updated 8/1/2003)<br />&#39; Copyright 1999-2001 by Frank Oquendo<br />&#39;<br />&#39; 该程序由明经通道修改支持2004版本<br />&#39; <a href="http://www.mjtd.com" title="http://www.mjtd.com" target="_blank">http://www.mjtd.com</a><br />&#39;<br />&#39; Permission to use, copy, modify, and distribute this software<br />&#39; for any purpose and without fee is hereby granted, provided<br />&#39; that the above copyright notice appears in all copies and<br />&#39; that both that copyright notice and the limited warranty and<br />&#39; restricted rights notice below appear in all supporting<br />&#39; documentation.<br />&#39;<br />&#39; FRANK OQUENDO (THE AUTHOR) PROVIDES THIS PROGRAM &quot;AS IS&quot; AND WITH<br />&#39; ALL FAULTS. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY<br />&#39; OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  THE AUTHOR<br />&#39; DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE<br />&#39; UNINTERRUPTED OR ERROR FREE.<br />&#39;<br />&#39; Use, duplication, or disclosure by the U.S. Government is subject to<br />&#39; restrictions set forth in FAR 52.227-19 (Commercial Computer<br />&#39; Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)<br />&#39; (Rights in Technical Data and Computer Software), as applicable.<br />&#39;<br />&#39; VLAX.cls allows developers to evaluate AutoLISP expressions from<br />&#39; Visual Basic or VBA<br />&#39;<br />&#39; Notes:<br />&#39; All code for this class module is publicly available througout various posts<br />&#39; at news://discussion.autodesk.com/autod ... stomization.vba.Idonot <br />&#39; claim copyright or authorship on code presented in these posts, only on this<br />&#39; compilation of that code. In addition, a great big &quot;Thank you!&quot; to Cyrille Fauvel<br />&#39; demonstrating the use of the VisualLISP ActiveX Module.<br />&#39;<br />&#39; Dependencies:<br />&#39; Use of this class module requires the following application:<br />&#39; 1. VisualLISP<br /><br />Private VL As Object<br />Private VLF As Object<br /><br />Private Sub Class_Initialize()<br />    &#39;根据AutoCAD的版本判断使用的库类型<br />    If Left(ThisDrawing.Application.Version, 2) = &quot;15&quot; Then<br />        Set VL = ThisDrawing.Application.GetInterfaceObject(&quot;VL.Application.1&quot;)<br />    ElseIf Left(ThisDrawing.Application.Version, 2) = &quot;16&quot; Then<br />        Set VL = ThisDrawing.Application.GetInterfaceObject(&quot;VL.Application.16&quot;)<br />    End If<br />    <br />    Set VLF = VL.ActiveDocument.Functions<br />End Sub<br /><br />Private Sub Class_Terminate()<br />    &#39;类析构时，释放内存<br />    Set VLF = Nothing<br />    Set VL = Nothing<br />End Sub<br /><br />Public Function EvalLispExpression(lispStatement As String)<br />    &#39;根据LISP表达式调用函数<br />    Dim sym As Object, ret As Object, retVal<br />    Set sym = VLF.item(&quot;read&quot;).funcall(lispStatement)<br />    <br />    On Error Resume Next<br />    <br />    retVal = VLF.item(&quot;eval&quot;).funcall(sym)<br />    <br />    If Err Then<br />        EvalLispExpression = &quot;&quot;<br />    Else<br />        EvalLispExpression = retVal<br />    End If<br />End Function<br /><br />Public Sub SetLispSymbol(symbolName As String, value)<br /><br />    Dim sym As Object, ret, symValue<br />    symValue = value<br />    <br />    Set sym = VLF.item(&quot;read&quot;).funcall(symbolName)<br />    <br />    ret = VLF.item(&quot;set&quot;).funcall(sym, symValue)<br />    EvalLispExpression &quot;(defun translate-variant (data) (cond ((= (type data) &#39;list) (mapcar &#39;translate-variant data)) ((= (type data) &#39;variant) (translate-variant (vlax-variant-value data))) ((= (type data) &#39;safearray) (mapcar &#39;translate-variant (vlax-safearray-&gt;list data))) (t data)))&quot;<br />    EvalLispExpression &quot;(setq &quot; &amp; symbolName &amp; &quot;(translate-variant &quot; &amp; symbolName &amp; &quot;))&quot;<br />    EvalLispExpression &quot;(setq translate-variant nil)&quot;<br />End Sub<br /><br />Public Function GetLispSymbol(symbolName As String)<br /><br />    Dim sym As Object, ret, symValue<br />    symValue = value<br />    <br />    Set sym = VLF.item(&quot;read&quot;).funcall(symbolName)<br />    <br />    GetLispSymbol = VLF.item(&quot;eval&quot;).funcall(sym)<br />End Function<br /><br />Public Function GetLispList(symbolName As String) As Variant<br />    Dim sym As Object, list As Object<br />    Dim Count, elements(), i As Long<br />    <br />    Set sym = VLF.item(&quot;read&quot;).funcall(symbolName)<br />    Set list = VLF.item(&quot;eval&quot;).funcall(sym)<br />    <br />    Count = VLF.item(&quot;length&quot;).funcall(list)<br />    <br />    ReDim elements(0 To Count - 1) As Variant<br />    <br />    For i = 0 To Count - 1<br />        elements(i) = VLF.item(&quot;nth&quot;).funcall(i, list)<br />    Next<br />    <br />    GetLispList = elements<br />End Function<br /><br />Public Sub NullifySymbol(ParamArray symbolName())<br /><br />    Dim i As Integer<br />    <br />    For i = LBound(symbolName) To UBound(symbolName)<br />        EvalLispExpression &quot;(setq &quot; &amp; CStr(symbolName(i)) &amp; &quot; nil)&quot;<br />    Next<br />End Sub<br /><br />欢迎转载，本文转自[田草博客www.tiancao.net] 原文链接：<a href="http://tiancao.net/blogview.asp?logID=290" title="http://tiancao.net/blogview.asp?logID=290" target="_blank">http://tiancao.net/blogview.asp?logID=290</a></div></div>]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=336]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[万能鼠标滚轮驱动程序Freewheel2.4]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=333]]></link> 
      <category><![CDATA[办公软件]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Wed, 13 May 2009 08:49:00 +0800</pubDate> 
      <description><![CDATA[万能鼠标滚轮驱动程序Freewheel2.4 <br /><br />用于:部分软件不支持滚轮,比如WORD,EXCEL的VBA编号界面.<br />比如WINDIFF,等等.<br /><br />用这个小软件以后,这些软件都支持滚轮了.<br /><br />真是不错.<div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content"><a href="http://www.ankty.com/soft/1/30/914.html" title="http://www.ankty.com/soft/1/30/914.html" target="_blank">http://www.ankty.com/soft/1/30/914.html</a><br /><br />目前3D滚轮鼠标已经非常普及了，相信你早已体验到滚轮带来的方便了。你可能也注意到Windows对滚轮支持的美中不足了 ------------例如:Lotus Notes4.6,GX Developer8.0等很多软件都不支持滚轮 如果你想用滚轮滚动某个窗口，你必须先点击该窗口激活它。如果不需</div></div>]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=333]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[用VBA为word创建文档结构图]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=332]]></link> 
      <category><![CDATA[办公软件]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Tue, 14 Apr 2009 17:22:58 +0800</pubDate> 
      <description><![CDATA[Sub 以段为单位建目录_wjm090414()<br />On Error Resume Next<br /><br />maxlen = 15 &#39;设定段落最大字数<br />minlen = 2 &#39;设定段落最小字数<br />Dim myParagraph As Paragraph<br />&#39;对每一段落进行操作<br />For Each myParagraph In ActiveDocument.Paragraphs<br /><br />&#39;<br />If myParagraph.Range.Font.Size &gt; 1000 Then Exit For<br />&#39;<br /> len1 = Len(myParagraph.Range.Text)<br />If len1 &lt;= maxlen And len1 &gt;= minlen Then<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=332]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[庆祝一下,一注过了.]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=330]]></link> 
      <category><![CDATA[结构设计]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Fri, 23 Jan 2009 22:21:36 +0800</pubDate> 
      <description><![CDATA[庆祝一下,一注过了.<br /><br />天天上okok网站查看消息,<br />等了好几天,终于在年前等到成绩发布的消息.<br /><br />心里特别激动,打开那熟悉的建设部的网站.<br /><br />输入自己的身份证,过了一秒钟,那一秒钟真是思绪万千,不懂的是喜是恢忧,还是紧张.<br /><br />过一秒钟,看到自己以62分过了的成绩,那时的心情真是无法形容.<br /><br />然后告诉老婆,老婆比我还要高兴.<br /><br />然后就是一个电话一个电话的打,告诉我的那些好亲朋好友们.分享我那点范进式的喜阅.<br /><br />最后祝大家新年快乐.]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=330]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[查分VBS]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=329]]></link> 
      <category><![CDATA[系统安全]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Thu, 22 Jan 2009 17:48:35 +0800</pubDate> 
      <description><![CDATA[Function getHTTPPage(url)<br />  On Error Resume Next<br />  Dim http<br />  Set http = CreateObject(&quot;Microsoft.XMLHTTP&quot;)<br />  http.Open &quot;GET&quot;, url, False<br />  http.send<br />  If http.readystate &lt;&gt; 4 Then<br />   Exit Function<br />  End If<br />  getHTTPPage = bytes2BSTR(http.responseBody)<br />  Set http = Nothing<br /><br /> End Function<br /><br /> Function bytes2BSTR(vIn)<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=329]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[SAT_ADD_COEF.PM  satwe运行时异常中断]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=328]]></link> 
      <category><![CDATA[结构软件]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Fri, 19 Dec 2008 19:24:33 +0800</pubDate> 
      <description><![CDATA[<a href="http://okok.org/forum/viewthread.php?action=printable&amp;tid=160351" title="http://okok.org/forum/viewthread.php?action=printable&amp;tid=160351" target="_blank">http://okok.org/forum/viewthread.php?action=printable&amp;tid=160351</a><br /><br /><div style="width: 100%;overflow-x : auto;"><a href="http://okok.org/forum/attachments/month_0803/20080319_67e5107f48425e775195KHV7ww8xzbo1.jpg" target="_blank"><img src="http://okok.org/forum/attachments/month_0803/20080319_67e5107f48425e775195KHV7ww8xzbo1.jpg" alt="http://okok.org/forum/attachments/month_0803/20080319_67e5107f48425e775195KHV7ww8xzbo1.jpg" /></a></div>]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=328]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[[转]PKPM(2005版)JCCAD升级补丁(重要)]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=327]]></link> 
      <category><![CDATA[结构软件]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Fri, 05 Dec 2008 16:26:16 +0800</pubDate> 
      <description><![CDATA[据说这是一个重要的补丁:<div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content"><a href="http://bbs.co.163.com/content/0_1226970_1.html" title="http://bbs.co.163.com/content/0_1226970_1.html" target="_blank">http://bbs.co.163.com/content/0_1226970_1.html</a><br />******惊现时间炸弹</div></div><div class="quote"><div class="quote-title">Quote <u></u></div><div class="quote-content"><a href="http://www.pkpm.cn/rjgx/2008128143631.htm" title="http://www.pkpm.cn/rjgx/2008128143631.htm" target="_blank">http://www.pkpm.cn/rjgx/2008128143631.htm</a><br /><a href="http://www.pkpm.com.cn/download/soft.asp?id=370" title="http://www.pkpm.com.cn/download/soft.asp?id=370" target="_blank">http://www.pkpm.com.cn/download/soft.asp?id=370</a><br /><br />PKPM(2005版)JCCAD升级补丁    <br />  运行平台 Win9x WinNT Win2000 WinME WinXP  <br />  授权形式 免费 <br />  软件评级 ★★★★★ <br />  更表日期 2008-12-1 17:08:00 </div></div>]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=327]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[[转]：关于TSPT建议之二,做为参考之用]]></title> 
      <link><![CDATA[http://www.jgcad.com/article.asp?id=326]]></link> 
      <category><![CDATA[CAD开发]]></category> 
      <author><![CDATA[wujimmy <null@null.com>]]></author> 
      <pubDate>Fri, 28 Nov 2008 17:36:03 +0800</pubDate> 
      <description><![CDATA[关于TSPT建议之二  <br /><br /><a href="http://www.xdcad.net/forum/showthread.php?postid=3250716" title="http://www.xdcad.net/forum/showthread.php?postid=3250716" target="_blank">http://www.xdcad.net/forum/showthread.php?postid=3250716</a><br /> <br /><br />晚上没事，又玩了一回TSPT，说说希望改进的吧。。。哎。。<br /><br />1、计算结果字高、高宽比等选项，目前是统一调整，应增加局部调整<br />计算结果查询以及归并修改时，计算结果能不能程序自动文字避让以及自动调整高度及高宽比以达到无文字重叠？<br />TSSD不是有文字重叠查询的功能吗？为什么不在引申一下让程序自动点呢？<br />此点不仅是查询以及在TSSD的所有输出图形中都应该改进! 如所出的平法图，我的版本里似乎没有文字避让功能！<br />或许有，但是由于字高设的3.5，生成的图简直如马蜂窝（当然还有其他原因，见下诉）!<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.jgcad.com/feed.asp?q=comment&id=326]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
