Jump to content

Short commands not working


kamig

Recommended Posts

hello bro,

 

i am faceing problam regarding short command like i want to make trim i give TR its giving me NIL and when i give trim thats working fine

 

so please help me????????

Link to comment
Share on other sites

  • Replies 22
  • Created
  • Last Reply

Top Posters In This Topic

  • ReMark

    8

  • kamig

    8

  • jammie

    3

  • Dadgad

    2

Popular Days

Top Posters In This Topic

It sounds like you have associated TR with a lisp command. Have you any custom LISP routines loaded?

Link to comment
Share on other sites

We are talking about editing the acad.pgp file right?

 

Reloading AutoCAD was overkill in this situation. Would you go out and buy four new tires for your car if only one was flat?

 

Do you use any custom lisp routines?

 

When you reinstalled AutoCAD did you edit the acad.pgp file?

Edited by ReMark
Link to comment
Share on other sites

I think jammie was probably closest. The NIL result is much more likely a LISP command than a missing pgp association.

Link to comment
Share on other sites

Your acad.pgp file shows up with a file size of 0kb? If you reinstalled AutoCAD MEP that seems near impossible. Are you sure you have the right folder?

Link to comment
Share on other sites

You must have deleted it then.

 

How did you obtain your copy of the program? We are talking about AutoCAD MEP 2009 right?

Link to comment
Share on other sites

no i am working in Company and they Install for us Autocad 2010 when i face this problam then IT guy he install 2 time this same software for me but the same problam and this autocad copy this working other PC v fine

only i have this problam when i give any short command like C, TR, CO, XR, MI if i give full command then working fine

Link to comment
Share on other sites

You know, it always helps to tell us exactly what program you're using when you are requesting assistance.

 

Since you have another PC with AutoCAD 2010 on that is working fine then all you need to do is copy the acad.pgp file from that computer over to yours and put it in the AutoCAD 2010 Support folder.

 

Sounds simple to me. IT could not figure this out on their own?

Link to comment
Share on other sites

Yes. Simple. Why would you think otherwise?

 

Is this a network version of the program or a standalone version?

Link to comment
Share on other sites

ReMark is correct. Piece of cake to fix. Copy and paste the shortcall customizations that you need from one of the other stations running the same software, there is nothing to be gained by doing again, that which has twice failed to yield the desired effect. Meaning you don't need to install the program. You already have the standard shortcalls, what you need are the user customization files added, copied and pasted should do it.

Link to comment
Share on other sites

standalone version

 

Copy from the computer where it works. Paste to the computer (yours) where it doesn't work.

 

Make sure you put the file in the correct folder.

 

If AutoCAD is already running issue the REINIT command then test.

 

Done.

 

You are making this more difficult than it needs to be.

Link to comment
Share on other sites

If REINIT does not work try the following LISP code

 

(defun c:test ()

 (setq bndCMD "" nonBndCmd "")
 

 (foreach <item> '("C:C" "C:TR" "C:CO" "C:XR" "C:MI")

   (if
     (boundp (read <item>))
     (setq bndCMD (strcat bndCMD "\n" <item>))
     (setq nonBndCmd (strcat nonBndCmd "\n" <item>))
     )
   )

 (alert
   (strcat
     "\n***	Standard commands	***" nonBndCmd ""
     "\n***	LISP functions		***" bndCMD ""
     )
   )
 )

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...