yyq620 发表于 2003-2-26 13:11:00

请教:如何在VB程序内得到用户在CAD命令行敲入的字符串?

我希望在程序中得到用户输入的字符串,根据内容转入不同的处理函数

mccad 发表于 2003-2-26 19:21:00

http://www.mjtd.com/a2/list.asp?id=72

南子 发表于 2003-2-28 14:44:00

(defun c:hello()
(princ))
Private Sub AcadDocument_BeginLisp(ByVal FirstLine As String)
if ucase(firstline)=ucase("(c:hello)") then
   'do something
endif
End Sub
页: [1]
查看完整版本: 请教:如何在VB程序内得到用户在CAD命令行敲入的字符串?