Jump to content

Recommended Posts

Posted

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????????

  • 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

Posted

reload your pgp file by "reinit" command, if that doesn't work then reload your menu.

Posted

bro i reinstall 2 time my cad but still same problam

Posted

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

Posted (edited)

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
Posted

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

Posted

no sir i did not edit but when i found this file in floder that is all 0kb

Posted

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?

Posted

You must have deleted it then.

 

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

Posted

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

Posted

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?

Posted

Yes. Simple. Why would you think otherwise?

 

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

Posted

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.

Posted
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.

Posted

Yes bro i did it now it is fine thanks

Posted

Yeah! At long last we have a success!

 

See....it really wasn't that tough after all now was it?

Posted

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 ""
     )
   )
 )

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...