Registered forum members do not see this ad.
I was trying to make a quick lisp file so that I can net send someone from autocad if they have a drawing open I need to access or what not. I tried to use
(command "start" "net" "send" sender sendtext) which didn't work. I can type it in the command line though and it will work.
Typing start then "Net Send Sender Sendtext". I noticed the startapp command in autolisp but I think that it just allows you to start a program and open a file in that program. Any ideas? Thanks.
ImaJayhawk
Registered forum members do not see this ad.
Here is what worked
(command "start" (strcat "Net " "Send " sender " " sendtext)). Also changed the flag to hidden. Can anyone think of better ways?
ImaJayhawk
Bookmarks