找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 651|回复: 8

[求助]:急!重装XD工具箱部分命令不能用

[复制链接]
发表于 2003-2-23 11:40:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
给acadr14.lsp中装了一些LISP程序后,重启动后执行XD工具箱中一些文字命令,结果出现了一行提示Initializing...AutoLISP stack overflow*Cancel*,重装XD工具箱也不行,不知是何原因。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!

已领礼包: 593个

财富等级: 财运亨通

发表于 2003-2-23 12:54:49 | 显示全部楼层
把acadr14.lsp贴上来看看。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2003-2-23 13:24:36 | 显示全部楼层

  1. ; Next available MSG number is    86
  2. ; MODULE_ID ACADR13_LSP_
  3. ;;;    ACADR14.LSP Version 14.1 for Release 14
  4. ;;;
  5. ;;;    Copyright (C) 1994 - 1997 by Autodesk, Inc.
  6. ;;;
  7. ;;;    Permission to use, copy, modify, and distribute this software
  8. ;;;    for any purpose and without fee is hereby granted, provided
  9. ;;;    that the above copyright notice appears in all copies and
  10. ;;;    that both that copyright notice and the limited warranty and
  11. ;;;    restricted rights notice below appear in all supporting
  12. ;;;    documentation.
  13. ;;;
  14. ;;;    AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
  15. ;;;    AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
  16. ;;;    MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
  17. ;;;    DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
  18. ;;;    UNINTERRUPTED OR ERROR FREE.
  19. ;;;
  20. ;;;    Use, duplication, or disclosure by the U.S. Government is subject to
  21. ;;;    restrictions set forth in FAR 52.227-19 (Commercial Computer
  22. ;;;    Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
  23. ;;;    (Rights in Technical Data and Computer Software), as applicable.
  24. ;;;
  25. ;;;.
  26. ;;;
  27. ;;;    Note:
  28. ;;;            This file is loaded automatically by AutoCAD every time
  29. ;;;            a drawing is opened.  It establishes an autoloader and
  30. ;;;            other utility functions.
  31. ;;;
  32. ;;;    Globalization Note:   
  33. ;;;            We do not support autoloading applications by the native
  34. ;;;            language command call (e.g. with the leading underscore
  35. ;;;            mechanism.)


  36. ;;;===== Raster Image Support for Clipboard Paste Special =====
  37. ;;
  38. ;; IMAGEFILE
  39. ;;
  40. ;; Allow the IMAGE command to accept an image file name without
  41. ;; presenting the file dialog, even if filedia is on.
  42. ;; Example: (imagefile "c:/images/house.bmp")
  43. ;;
  44. (defun imagefile (filename / filedia-save cmdecho-save)
  45.   (setq filedia-save (getvar "FILEDIA"))
  46.   (setq cmdecho-save (getvar "CMDECHO"))
  47.   (setvar "FILEDIA" 0)
  48.   (setvar "CMDECHO" 0)
  49.   (command "_.-image" "_attach" filename)
  50.   (setvar "FILEDIA" filedia-save)
  51.   (setvar "CMDECHO" cmdecho-save)
  52.   (princ)
  53. )

  54. ;;;=== General Utility Functions ===

  55. ;   R12 compatibility - In R12 (acad_helpdlg) was an externally-defined
  56. ;   ADS function.  Now it's a simple AutoLISP function that calls the
  57. ;   built-in function (help).  It's only purpose is R12 compatibility.  
  58. ;   If you are calling it for anything else, you should almost certainly
  59. ;   be calling (help) instead.

  60. (defun acad_helpdlg (helpfile topic)
  61.   (help helpfile topic)
  62. )


  63. (defun *merr* (msg)
  64.   (setq *error* m:err m:err nil)
  65.   (princ)
  66. )

  67. (defun *merrmsg* (msg)
  68.   (princ msg)
  69.   (setq *error* m:err m:err nil)
  70.   (princ)
  71. )

  72. ;; Loads the indicated ARX app if it isn't already loaded
  73. ;; returns nil if no load was necessary, else returns the
  74. ;; app name if a load occurred.
  75. (defun verify_arxapp_loaded (app)
  76.   (if (not (loadedp app (arx)))
  77.       (arxload app f)
  78.   )
  79. )

  80. ;; determines if a given application is loaded...
  81. ;; general purpose: can ostensibly be used for appsets (arx) or (ads) or....
  82. ;;
  83. ;; app is the filename of the application to check (extension is required)
  84. ;; appset is a list of applications, (such as (arx) or (ads)
  85. ;;
  86. ;; returns T or nil, depending on whether app is present in the appset
  87. ;; indicated.  Case is ignored in comparison, so "foo.arx" matches "FOO.ARX"
  88. ;; Also, if appset contains members that contain paths, app will right-match
  89. ;; against these members, so "bar.arx" matches "c:\\path\\bar.arx"; note that
  90. ;; "bar.arx" will *not* match "c:\\path\\foobar.arx."
  91. (defun loadedp (app appset)
  92.   (cond (appset  (or
  93.                      ;; exactly equal? (ignoring case)
  94.                      (= (strcase (car appset))
  95.                         (strcase app))
  96.                      ;; right-matching? (ignoring case, but assuming that
  97.                      ;; it's a complete filename (with a backslash before it)
  98.                                          (and
  99.                                              (> (strlen (car appset)) (strlen app))
  100.                              (= (strcase (substr (car appset)
  101.                                                  (- (strlen (car appset))
  102.                                                     (strlen app)
  103.                                                  )
  104.                                          )
  105.                                 )
  106.                                 (strcase (strcat "\" app))
  107.                              )
  108.                                      )
  109.                      ;; no match for this entry in appset, try next one....
  110.                      (loadedp app (cdr appset)) )))
  111. )


  112. ;;; ===== Single-line MText editor =====
  113. (defun LispEd (contents / fname dcl state)
  114.   (if (not (setq fname (getvar "program")))
  115.      (setq fname "acad")
  116.   )
  117.   (strcat fname ".dcl")
  118.   (setq dcl (load_dialog fname))
  119.   (if (not (new_dialog "LispEd" dcl)) (exit))
  120.   (set_tile "contents" contents)
  121.   (mode_tile "contents" 2)
  122.   (action_tile "contents" "(setq contents $value)")
  123.   (action_tile "accept" "(done_dialog 1)")
  124.   (action_tile "mtexted" "(done_dialog 2)" )
  125.   (setq state (start_dialog))
  126.   (unload_dialog dcl)
  127.   (cond
  128.     ((= state 1) contents)
  129.     ((= state 2) -1)
  130.     (t 0)
  131.   )
  132. )

  133. ;;; ===== Discontinued commands =====
  134. (defun c:gifin ()
  135.   (alert "\nThe GIFIN command is no longer supported.\nUse the IMAGE command to attach raster image files.\n")
  136.   (princ)
  137. )

  138. (defun c:pcxin ()
  139.   (alert "\nThe PCXIN command is no longer supported.\nUse the IMAGE command to attach raster image files.\n")
  140.   (princ)
  141. )

  142. (defun c:tiffin ()
  143.   (alert "\nThe TIFFIN command is no longer supported.\nUse the IMAGE command to attach raster image files.\n")
  144.   (princ)
  145. )

  146. (defun c:ddemodes()
  147.   (alert "The Object Properties toolbar incorporates DDEMODES functionality.  \nDDEMODES has been discontinued.  \n\nFor more information, select DDEMODES from the AutoCAD Help Index tab.")
  148.   (princ)
  149. )

  150. ;;; ===== AutoLoad =====

  151. ;;; Check list of loaded <apptype> applications ("ads" or "arx")
  152. ;;; for the name of a certain appplication <appname>.
  153. ;;; Returns T if <appname> is loaded.

  154. (defun ai_AppLoaded (appname apptype)
  155.    (apply 'or
  156.       (mapcar
  157.         '(lambda (j)
  158.             (wcmatch
  159.                (strcase j T)
  160.                (strcase (strcat "*" appname "*") T)
  161.             )   
  162.          )
  163.          (eval (list (read apptype)))
  164.       )
  165.    )
  166. )

  167. ;;  
  168. ;;  Native Rx commands cannot be called with the "C:" syntax.  They must
  169. ;;  be called via (command).  Therefore they require their own autoload
  170. ;;  command.

  171. (defun autonativeload (app cmdliste / qapp)
  172.   (setq qapp (strcat """ app """))
  173.   (setq initstring "\nInitializing...")
  174.   (mapcar
  175.    '(lambda (cmd / nom_cmd native_cmd)
  176.       (progn
  177.         (setq nom_cmd (strcat "C:" cmd))
  178.         (setq native_cmd (strcat ""_" cmd """))
  179.         (if (not (eval (read nom_cmd)))
  180.             (eval
  181.              (read (strcat
  182.                     "(defun " nom_cmd "()"
  183.                     "(setq m:err *error* *error* *merrmsg*)"
  184.                     "(if (ai_ffile " qapp ")"
  185.                     "(progn (princ initstring)"
  186.                     "(_autoarxload " qapp ") (command " native_cmd "))"
  187.                     "(ai_nofile " qapp "))"
  188.                     "(setq *error* m:err m:err nil))"
  189.                     ))))))
  190.    cmdliste)
  191.   nil
  192. )

  193. (defun _autoqload (quoi app cmdliste / qapp symnam)
  194.   (setq qapp (strcat """ app """))
  195.   (setq initstring "\nInitializing...")
  196.   (mapcar
  197.    '(lambda (cmd / nom_cmd)
  198.       (progn
  199.         (setq nom_cmd (strcat "C:" cmd))
  200.         (if (not (eval (read nom_cmd)))
  201.             (eval
  202.              (read (strcat
  203.                     "(defun " nom_cmd "( / rtn)"
  204.                     "(setq m:err *error* *error* *merrmsg*)"
  205.                     "(if (ai_ffile " qapp ")"
  206.                     "(progn (princ initstring)"
  207.                     "(_auto" quoi "load " qapp ") (setq rtn (" nom_cmd ")))"
  208.                     "(ai_nofile " qapp "))"
  209.                     "(setq *error* m:err m:err nil)"
  210.                     "rtn)"
  211.                     ))))))
  212.    cmdliste)
  213.   nil
  214. )

  215. (defun autoload (app cmdliste)
  216.   (_autoqload "" app cmdliste)
  217. )

  218. (defun autoxload (app cmdliste)
  219.   (_autoqload "x" app cmdliste)
  220. )

  221. (defun autoarxload (app cmdliste)
  222.   (_autoqload "arx" app cmdliste)
  223. )

  224. (defun autoarxacedload (app cmdliste / qapp symnam)
  225.   (setq qapp (strcat """ app """))
  226.   (setq initstring "\nInitializing...")
  227.   (mapcar
  228.    '(lambda (cmd / nom_cmd)
  229.       (progn
  230.         (setq nom_cmd (strcat "C:" cmd))
  231.         (if (not (eval (read nom_cmd)))
  232.             (eval
  233.              (read (strcat
  234.                     "(defun " nom_cmd "( / oldcmdecho)"
  235.                     "(setq m:err *error* *error* *merrmsg*)"
  236.                     "(if (ai_ffile " qapp ")"
  237.                     "(progn (princ initstring)"
  238.                     "(_autoarxload " qapp ")"
  239.                     "(setq oldcmdecho (getvar "CMDECHO"))"
  240.                     "(setvar "CMDECHO" 0)"
  241.                     "(command " ""_" cmd """ ")"
  242.                     "(setvar "CMDECHO" oldcmdecho))"
  243.                     "(ai_nofile " qapp "))"
  244.                     "(setq *error* m:err m:err nil)"
  245.                     "(princ))"
  246.                     ))))))
  247.    cmdliste)
  248.   nil
  249. )

  250. (defun _autoload (app)
  251. ; (princ "Auto:(load ") (princ app) (princ ")") (terpri)
  252.   (load app)
  253. )

  254. (defun _autoxload (app)
  255. ; (princ "Auto:(xload ") (princ app) (princ ")") (terpri)
  256.   (if (= app "region") (ai_select))
  257.   (xload app)
  258.   (if (= app "region") (ai_amegrey "~"))
  259. )

  260. (defun _autoarxload (app)
  261. ; (princ "Auto:(arxload ") (princ app) (princ ")") (terpri)
  262.   (arxload app)
  263. )

  264. (defun ai_ffile (app)
  265.   (or (findfile (strcat app ".lsp"))
  266.       (findfile (strcat app ".exp"))
  267.       (findfile (strcat app ".exe"))
  268.       (findfile (strcat app ".arx"))
  269.       (findfile app)
  270.   )
  271. )

  272. (defun ai_nofile (filename)
  273.   (princ
  274.     (strcat "\nThe file "
  275.             filename
  276.             "(.lsp/.exe/.arx) was not found in your search path folders."
  277.     )
  278.   )
  279.   (princ "\nCheck the installation of the support files and try again.")
  280.   (princ)
  281. )


  282. ;;;===== AutoLoad LISP Applications =====
  283. ;  Set help for those apps with a command line interface

  284. (autoload "appload" '("appload" "appload"))

  285. (autoload "edge"  '("edge"))
  286. (setfunhelp "C:edge" "" "edge")

  287. (autoload "filter" '("filter " "filter"))

  288. (autoload "3d" '("3d" "3d" "ai_box" "ai_pyramid" "ai_wedge" "ai_dome"
  289.                  "ai_mesh" "ai_sphere" "ai_cone" "ai_torus" "ai_dish")
  290. )
  291. (setfunhelp "C:3d" "" "3d")
  292. (setfunhelp "C:ai_box" "" "3d_box")
  293. (setfunhelp "C:ai_pyramid" "" "3d_pyramid")
  294. (setfunhelp "C:ai__wedge" "" "3d_wedge")
  295. (setfunhelp "C:ai_dome" "" "3d_dome")
  296. (setfunhelp "C:ai_mesh" "" "3d_mesh")
  297. (setfunhelp "C:ai_sphere" "" "3d_sphere")
  298. (setfunhelp "C:ai_cone" "" "3d_cone")
  299. (setfunhelp "C:ai_torus" "" "3d_torus")
  300. (setfunhelp "C:ai_dish" "" "3d_dish")

  301. (autoload "ce" '("ce"))

  302. (autoload "Stext1" '("Stext1"))

  303. (autoload "Stext" '("Stext"))

  304. (autoload "tengc" '("tengc"))

  305. (autoload "search" '("search"))

  306. (autoload "ddinsert" '("ddinsert"))

  307. (autoload "ddattdef" '("ddattdef"))

  308. (autoload "ddattext" '("ddattext"))

  309. (autoload "3darray" '("3darray"))
  310. (setfunhelp "C:3darray" "" "3darray")

  311. (autoload "ddmodify" '("ddmodify"))

  312. (autoload "ddchprop" '("ddchprop"))

  313. (autoload "ddview" '("ddview"))

  314. (autoload "ddvpoint" '("ddvpoint"))

  315. (autoload "mvsetup" '("mvsetup"))
  316. (setfunhelp "C:mvsetup" "" "mvsetup")

  317. (autoload "ddosnap" '("ddosnap"))

  318. (autoload "ddptype" '("ddptype"))

  319. (autoload "dducsp" '("dducsp"))

  320. (autoload "ddunits" '("ddunits"))

  321. (autoload "ddgrips" '("ddgrips"))

  322. (autoload "ddselect" '("ddselect"))

  323. (autoload "ddrename" '("ddrename"))

  324. (autoload "ddcolor" '("ddcolor"))

  325. (autoload "bmake" '("bmake"))

  326. (autoload "attredef" '("attredef"))
  327. (setfunhelp "C:attredef" "" "attredef")

  328. (autoload "xplode" '("xp" "xplode"))
  329. (setfunhelp "C:xplode" "" "xplode")

  330. (autoload "tutorial" '("tutdemo" "tutclear"
  331.                                        "tutdemo"
  332.                                        "tutclear"))

  333. ;; CalComp Configuration Command
  334. (autoload "plpccw" '("cconfig"))


  335. ;;;===== AutoXLoad ADS Applications =====

  336. (autoxload "hpmplot" ' ("hpconfig" "hpconfig" ))


  337. ;;;=========AutoArxLoad OCE Driver ARX applications ===========

  338. (autoarxload "oceconf" '("oceconfig" "oceconfig"))

  339. ;;;===== AutoArxLoad Arx Applications =====

  340. (autoarxload "geomcal" '("cal" "cal"))

  341. (autoarxload "geom3d" '("mirror3d" "rotate3d" "align"
  342.                       "mirror3d" "rotate3d"
  343.                                  "align"))


  344. ;;; ===== Double byte character handling functions =====

  345. (defun is_lead_byte(code)
  346.     (setq asia_cd (getvar "dwgcodepage"))
  347.     (cond
  348.         ( (or (= asia_cd "dos932")
  349.               (= asia_cd "ANSI_932")
  350.           )
  351.           (or (and (<= 129 code) (<= code 159))
  352.               (and (<= 224 code) (<= code 252))
  353.           )
  354.         )
  355.         ( (or (= asia_cd "big5")
  356.               (= asia_cd "ANSI_950")
  357.           )
  358.           (and (<= 161 code) (<= code 254))
  359.         )
  360.         ( (or (= asia_cd "johab")
  361.               (= asia_cd "ANSI_1361")
  362.           )
  363.           (and (<= 132 code) (<= code 211))
  364.         )
  365.         ( (or (= asia_cd "ksc5601")
  366.               (= asia_cd "ANSI_949")
  367.           )
  368.           (and (<= 161 code) (<= code 253))
  369.         )
  370.     )
  371. )

  372. ;;; ====================================================


  373. ;;;
  374. ;;;  FITSTR2LEN
  375. ;;;
  376. ;;;  Truncates the given string to the given length.
  377. ;;;  This function should be used to fit symbol table names, that
  378. ;;;  may turn into \U+ sequences into a given size to be displayed
  379. ;;;  inside a dialog box.
  380. ;;;
  381. ;;;  Ex: the following string:
  382. ;;;
  383. ;;;      "This is a long string that will not fit into a 32 character static text box."
  384. ;;;
  385. ;;;      would display as a 32 character long string as follows:
  386. ;;;
  387. ;;;      "This is a long...tatic text box."
  388. ;;;

  389. (defun fitstr2len (str1 maxlen)

  390.     ;;; initialize internals
  391.     (setq tmpstr str1)
  392.     (setq len (strlen tmpstr))

  393.     (if (> len maxlen)
  394.          (progn
  395.             (setq maxlen2 (/ maxlen 2))
  396.             (if (> maxlen (* maxlen2 2))
  397.                  (setq maxlen2 (- maxlen2 1))
  398.             )
  399.             (if (is_lead_byte (substr tmpstr (- maxlen2 2) 1))
  400.                  (setq tmpstr1 (substr tmpstr 1 (- maxlen2 3)))
  401.                  (setq tmpstr1 (substr tmpstr 1 (- maxlen2 2)))
  402.             )
  403.             (if (is_lead_byte (substr tmpstr (- len (- maxlen2 1)) 1))
  404.                  (setq tmpstr2 (substr tmpstr (- len (- maxlen2 3))))
  405.                  (setq tmpstr2 (substr tmpstr (- len (- maxlen2 2))))
  406.             )
  407.             (setq str2 (strcat tmpstr1 "..." tmpstr2))
  408.          ) ;;; progn
  409.          (setq str2 (strcat tmpstr))
  410.     ) ;;; if
  411. ) ;;; defun


  412. ;;;
  413. ;;;  If the first object in a selection set has an attached URL
  414. ;;;  Then launch browser and point to the URL.
  415. ;;;  Called by the Grips Cursor Menu
  416. ;;;

  417. (defun C:gotourl ( / ssurl url i)
  418.    (setq m:err *error* *error* *merrmsg* i 0)

  419. ; if some objects are not already pickfirst selected,
  420. ; then allow objects to be selected

  421.   (if (not (setq ssurl (ssget "I")))
  422.       (setq ssurl (ssget))
  423.   )

  424. ; if geturl LISP command not found then load arx application

  425.   (if (/= (type geturl) 'EXRXSUBR)
  426.     (arxload "dwfout")
  427.   )
  428.   
  429. ;  Search list for first object with an URL
  430.   (while (and (= url nil) (< i (sslength ssurl)))
  431.     (setq url (geturl (ssname ssurl i))
  432.           i (1+ i))
  433.   )

  434. ; If an URL has be found, open browser and point to URL
  435.   (if (= url nil)
  436.     (alert "No Universal Resource Locator associated with the object.")
  437.     (command "_.browser" url)
  438.   )

  439.   (setq *error* m:err m:err nil)
  440.   (princ)

  441. )

  442. ;; Used by the import dialog to silently load a 3ds file
  443. (defun import3ds (filename / filedia_old render)
  444.   ;; Load Render if not loaded
  445.   (setq render (findfile "render.arx"))
  446.   (if render
  447.     (verify_arxapp_loaded render)
  448.     (quit)
  449.   )

  450.   ;; Save current filedia & cmdecho setting.
  451.   (setq filedia-save (getvar "FILEDIA"))
  452.   (setq cmdecho-save (getvar "CMDECHO"))
  453.   (setvar "FILEDIA" 0)
  454.   (setvar "CMDECHO" 0)

  455.   ;; Call 3DSIN and pass in filename.
  456.   (c:3dsin 1 filename)

  457.   ;; Reset filedia & cmdecho
  458.   (setvar "FILEDIA" filedia-save)
  459.   (setvar "CMDECHO" cmdecho-save)
  460.   (princ)
  461. )

  462. ;; Silent load.
  463. (princ)

  464. ;; The following line loads the AutoLISP routines for AutoCAD Release 14.
  465. ;; Altering this line will affect the application's internet functionality.
  466. (load "inet")
  467. ;; The following line conditionally loads AutoLISP routines for AutoCAD Release 14
  468. ;; Altering this line will affect bonus functionality
  469. (load "bonus.lsp" "")
  470. 
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

已领礼包: 593个

财富等级: 财运亨通

发表于 2003-2-23 13:48:27 | 显示全部楼层
你检查工具箱中的xdsoft.mnl 与 文字的程序,看看是不是和你的程序有冲突。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2003-2-23 14:56:51 | 显示全部楼层
能说得具体些吗?
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

已领礼包: 593个

财富等级: 财运亨通

发表于 2003-2-23 15:09:23 | 显示全部楼层
最初由 wcf 发布
[B]能说得具体些吗? [/B]

看XDSoft.mnl中的文字工具的autoload部分。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2003-2-23 15:13:42 | 显示全部楼层
谢谢!我再试一试
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

发表于 2003-2-23 21:24:54 | 显示全部楼层
有无可能是内存不够?
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2003-2-24 15:20:41 | 显示全部楼层
此问题解决了,重笨办法,重装了一次CAD,重装XD工具箱和其它软件。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2025-9-20 00:41 , Processed in 0.218076 second(s), 48 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表