CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Location
    VA BEACH
    Posts
    467

    Automating VB build

    I need to automate a visual basic build.
    I have an DevStudio add in that ocmpiles
    all my C++ programs, but I have a few controls in VB that need to be autobuilt as well. Does anyone have any examples or info on how to automate a vb build( preferrably through the devstudio add in I already have written in VB ).
    thanks




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

    Re: Automating VB build

    The only way I've ever 'batched' built a group of visual basic programs is from a commandline / BAT file.

    I basically added the \program files\microsoft visual studio\vb98 to my path environment variable, then used :

    vb6 /make \myproject\mydll\mydll.vbp

    - type syntax for each project.

    Typing 'vb6.exe /?' at the command line prompt (once you have \program files\microsoft visu....' in your path) with show you the command line options.


    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