See the top rated post in this thread. Click here

Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: Access and extract property set information through lisp

  1. #11
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    0

    Default Re: Access and extract property set information through lisp

    Quote Originally Posted by BIG-AL View Post
    I am trying to solve same problem.

    (setq schedApp (vla-getInterfaceObject (vlax-get-acad-object) "AecX.AecScheduleApplication.x.x")) ; change x.x for 2020
    the aecx. does not exist.


    (setq schedApp (vla-getInterfaceObject acadObj "AeccXUiLand.AeccApplication.13.2") ; this is CIV3d 2020
    Maybe
    Code:
    (setq key (vlax-user-product-key)
          1st (+(vl-string-search "\R" key)3)
          key (strcat "AeccXUiLand.AeccApplication." (substr key 1st 3))
    )

  2. #12
    Administrator Opie's Avatar
    Join Date
    2002-01
    Location
    jUSt Here (a lot)
    Posts
    9,106
    Login to Give a bone
    1

    Default Re: Access and extract property set information through lisp

    Quote Originally Posted by Tom Beauford View Post
    Maybe
    Code:
    (setq key (vlax-user-product-key)
          1st (+(vl-string-search "\R" key)3)
          key (strcat "AeccXUiLand.AeccApplication." (substr key 1st 3))
    )
    In place of your (substr key 1st 3), which is returning an incorrect number for AECC applications, you can use the sub-routine "c3dver" found in this code
    If you have a technical question, please find the appropriate forum and ask it there.
    You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
    jUSt

  3. #13
    All AUGI, all the time
    Join Date
    2003-07
    Posts
    561
    Login to Give a bone
    0

    Default Re: Access and extract property set information through lisp

    The issue is "AecX.AecScheduleApplication.8.1" the file AecX.dll is part of Autocad Architecture not CIV3D there is no doubt a dll which has the .AecScheduleApplication within it. So its a case of which one.

    I have numerous Civ3d programs so getting correct ver there is not problem.

    One post referred to visual studio being able to look inside dll for functions I don't do anything in .net.

    Thanks to Berndt !

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Easily extract information from a PDF into a database
    By thomas.stright in forum Software
    Replies: 1
    Last Post: 2006-12-20, 09:47 PM
  2. Extract entity information from within an xref
    By marc.primaroh in forum AutoLISP
    Replies: 2
    Last Post: 2006-04-10, 11:34 AM
  3. Replies: 5
    Last Post: 2006-03-02, 12:15 PM
  4. Script to extract attribute information
    By sifuentes in forum AutoCAD Customization
    Replies: 1
    Last Post: 2005-07-07, 01:13 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •