CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: VB Compilition

  1. #1
    Join Date
    Jul 1999
    Location
    Israel
    Posts
    140

    VB Compilition

    I need to know if there is a way to compile & make vb project without using the ui (i.e from the command line like using NMAKE for Visual C++ projects).





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

    Re: VB Compilition

    If you go into your VB 'home' directory (something like \program files\microsoft visual studio\vb98), you can use the vb6.exe program from the command line using :

    /run
    /runexit
    /make or /m projectname
    /out filename
    /outdir path
    /d
    /cmd
    /mdi or /sdi

    - and a couple of others.

    Run vb6.exe /? for more information.


    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