CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 1999
    Location
    Israel
    Posts
    35

    Building a project from the command line

    I'm building a VB project from the command line using:

    VB6 /makedll ........

    It's working, but gives me no errorlevel or any other indication of success. When the process fails, it opens a messagebox, which does not suit my quiet batch.

    Is it possible to quitely build a VB project from a batch file, and get a success/fail indication eventually?


  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Building a project from the command line

    Typing VB6.EXE /? from the command line shows that you can specify a '/out filename' and '/outdir path' parameter to capture any failures from the command line build - I've never used it though.


    Chris Eastwood

    CodeGuru - the website for developers
    http://codeguru.developer.com/vb

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured