Hide message Initializing VBA System

Discussion in 'AutoCAD' started by mrevelli, Jan 21, 2005.

  1. mrevelli

    mrevelli Guest

    How do i disable the message that says AutoCAD is initializing the VBA system?
    I have a VB ActiveX dll that i'm calling functions from Lisp, and
    everytime i do, AutoCAD posts this message.
    I have also to set cmdecho 0 and nomutt 1 , but nothing
    Can i turn that off?
    Thanks in advance
    Max
     
    mrevelli, Jan 21, 2005
    #1
  2. Hi,

    You may be able to experiment with this code:

    (defun CADAppsCleanCommandLine (spFunctionString)
    (setq n (strlen spFunctionString))
    (repeat n (princ (chr 8))) (repeat n (princ (chr 32)))
    (princ)
    )

    I pass the string calling a vba program to it with code like this:

    (defun C:ChangeRoad ()
    (setq sPBFunction (strcat sPBRoadProgram "ChangeRoad"))
    (vl-vbarun sPBFunction)
    (CADAppsCleanCommandLine sPBFunction)
    )

    --

    Regards,


    Laurie Comerford
    www.cadapps.com.au
     
    Laurie Comerford, Jan 21, 2005
    #2
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.