OUTLOOK.EXE

Discussion in 'AutoCAD' started by BParker35, Jan 4, 2005.

  1. BParker35

    BParker35 Guest

    How would I launch this using lisp or VB?

    (startapp "C:\Program Files\Microsoft Office\Office10\OUTLOOK.EXE" /c ipm.stickynote)

    Thanks in advance!
     
    BParker35, Jan 4, 2005
    #1
  2. Hi,

    "Shell" is the equivalent of "StartApp"

    --

    Regards,


    Laurie Comerford
    www.cadapps.com.au
     
    Laurie Comerford, Jan 4, 2005
    #2
  3. Correct me if I'm wrong... but what you have written is LISP.....

    try changing the direction of your backslash to a forward slash and adding literal quotes to the switch at the end.


    (startapp "c:/Program Files/Microsoft Office/Office10/outlook.exe" "\"/c ipm.stickynote \"")

    My version of outlook gives me an error saying it's an invalid switch... so that may be part of the problem.. or not..

    Casey
     
    Casey Roberts, Jan 4, 2005
    #3
  4. BParker35

    BParker35 Guest

    I am using this in my menu and it is working great.
    [->&Outlook]
    [&Journal]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE" /c ipm.activity;
    [&Appointment]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE" /c ipm.appointment;
    [&Contact]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE" /c ipm.contact;
    [&E-mail]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE" /c ipm.note;
    [&Task]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE" /c ipm.task;
    [&Note]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE" /c ipm.stickynote;
    [--]
    [<-Outlook]^C^Cshell "C:/Program Files/Microsoft Office/Office10/OUTLOOK.EXE";
     
    BParker35, Jan 4, 2005
    #4
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.