Purge Appids

Discussion in 'AutoCAD' started by Marc'Antonio Alessi, Feb 9, 2004.

  1. 2 questions:

    1) Is it a good habit to purge all unused Appids or there are
    some side effects?

    2) I am still looking for a method to rename a text STYLE with
    null name (2 . "") and than purge it:

    Command: (setq stdata (entget (tblobjname "style" "")))

    (
    (-1 . <Nome entità: 400a45f8>)
    (0 . "STYLE") (330 . <Nome entità: 400a4108>)
    (5 . "273961CE31FF") (100 . "AcDbSymbolTableRecord")
    (100 . "AcDbTextStyleTableRecord")
    (2 . "") ; >>> null name
    (70 . 1) (40 . 0.0) (41 . 1.0) (50 . 0.0)
    (71 . 0) (42 . 150.0) (3 . "ltypeshp.shx") (4 . "")
    )

    Command: (entmod (subst '(2 . "STILExxx") (assoc 2 stdata) stdata))
    nil

    Any workaround?


    --

    this is an example of the old empty applications in a drawing:

    Application: AMDT_DM_ADJ was deleted.
    Application: GEVID1059378039 was deleted.
    Application: GEVID1059378038 was deleted.
    Application: GEVID1059378037 was deleted.
    Application: GEVID1059378036 was deleted.
    Application: GENIUS_GENHATCH_13 was deleted.
    Application: GENIUS_GENOBJ-N-HTC_13 was deleted.
    Application: GENIUS_GEFPARTINS_13 was deleted.
    Application: GENIUS_GEFSTDP_13 was deleted.
    Application: GENIUS_GENOBJ-F-PART_13 was deleted.
    Application: GENIUS_GEFFEAT_14 was deleted.
    Application: GENIUS_GENOBJ-F-FEAT_13 was deleted.
    Application: GENIUS_GEFDESC_14 was deleted.
    Application: GENIUS_GENOBJ-F-DESC_13 was deleted.
    Application: GENBH was deleted.
    Application: VCC was deleted.
    Application: GEVIT was deleted.
    Application: GEVPT was deleted.
    Application: GEVID930130543 was deleted.
    Application: GENIUS_GENHINW_13 was deleted.
    Application: GENIUS_GENDREL_13 was deleted.
    Application: GENIUS_GENDIMSH_14 was deleted.
    Application: GEVID952338387 was deleted.
    Application: GEVDC was deleted.
    Application: GEVID952338386 was deleted.
    Application: GENIUS_GENZVEED_13 was deleted.
    Application: GENIUS_GEFCFG0_13 was deleted.
    Application: GENIUS_DUMCFG0_13 was deleted.
    Application: ACADM_DIM_EDIT was deleted.
    Application: ASURF_PCURVE_APPNAME was deleted.
    Application: ACATTRIBSERVICES was deleted.
    Application: AD_DRAW was deleted.
    Application: GENIUS_GE3DTOL_13 was deleted.
    Application: GENIUS_GENDIM_13 was deleted.
    Application: GENIUS_GEVCFG0_13 was deleted.
    Application: GENIUS_GENCFG4_13 was deleted.
    Application: GENIUS_GENCFG3_13 was deleted.
    Application: GENIUS_GENCFG2_13 was deleted.
    Application: GENIUS_GENCFG1_13 was deleted.
    Application: GENIUS_GENCFG0_13 was deleted.
    Application: GENIUS_GENCFG_13 was deleted.
    Application: AM_EDITFEAT was deleted.
    Application: GENIUS_GE3SH_14_1 was deleted.
    Application: GENIUS_GENOBJ-3-SH3D_13 was deleted.
    Application: DESIGNERASSEMBLIES was deleted.
    Application: ACAD_TEMP_GRAPHIC was deleted.
    Application: MCAD_NO_VIS was deleted.

    --
     
    Marc'Antonio Alessi, Feb 9, 2004
    #1
  2. Marc'Antonio Alessi

    R.K. McSwain Guest

    I do it regularly, have not had any problems.

    That is not a text style, it's a reference to a loaded shape file.
     
    R.K. McSwain, Feb 9, 2004
    #2
  3. Thanks R.K.,
    From my acaddocs:

    2 = style name
    3 = primary font name

    ?
     
    Marc'Antonio Alessi, Feb 9, 2004
    #3
  4. Marc'Antonio Alessi

    R.K. McSwain Guest

    Look in the DXF reference | Tables | Style to find this:

    A STYLE table item is also used to record shape file LOAD command requests. In this case the first bit (1) is set in the 70 group flags and only the 3 group (shape file name) is meaningful (all the other groups are output, however).
     
    R.K. McSwain, Feb 9, 2004
    #4
  5. Grazie mille,

    I never look at that, may be this is reason that I can
    not rename this text style.

    Thanks again.

    Marco

    --
     
    Marc'Antonio Alessi, Feb 10, 2004
    #5
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.