Display Digital Signature Information

Discussion in 'AutoCAD' started by Lambertus Oosterveen, Aug 23, 2004.

  1. How can the following setting on the tab Open and Save of the Options dialog
    box be made with VBA ?

    Display Digital Signature Information

    Presents digital signature information when a file with a valid digital
    signature is opened. (SIGWARN system variable).

    ThisDrawing.Application.Preferences.OpenSave.xxxxxxxxx

    I cannot find it !

    Regards,
    Lambertus
     
    Lambertus Oosterveen, Aug 23, 2004
    #1
  2. It seems to be missing from the object model but luckily as it is a system variable you can do the following:
    ThisDrawing.SetVariable "SIGWARN", 1
    or
    ThisDrawing.SetVariable "SIGWARN", 0

    Regards - Nathan
     
    Nathan Taylor, Aug 24, 2004
    #2
  3. It seems to be missing from the object model <snip>
    Actually, that may not be true. After seeing numerous posts requesting help
    on this topic, I started pooking around and there is a dll available :
    C:\Program Files\Common Files\Autodesk Shared\AcSignCore16.dll. Add a
    reference to it and see if it doesn't answer the question. I haven't been
    able to find any info on the file - even thru ADN - so you're in uncharted
    waters =)

    -- Mike
    ___________________________
    Mike Tuersley
    CADalyst's CAD Clinic
    Rand IMAGINiT Technologies
    ___________________________
    the trick is to realize that there is no spoon...
     
    Mike Tuersley, Aug 24, 2004
    #3
  4. Is Autodesk working on this?

    Lambertus

     
    Lambertus Oosterveen, Aug 24, 2004
    #4
  5. Not that I am aware of. This probably falls into the same category as DBX -
    its there for us to explore/exploit but there is no 'official' manual
    available.

    -- Mike
    ___________________________
    Mike Tuersley
    CADalyst's CAD Clinic
    Rand IMAGINiT Technologies
    ___________________________
    the trick is to realize that there is no spoon...
     
    Mike Tuersley, Aug 24, 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.