CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2011
    Posts
    18

    In Visual Basic 6, how do I load and execute an interface project?

    Hi All! I am a beginner to Visual Basic 6 and have just developed a small interface project. After having designed a simple menu, how di I load and execute the initial interface? Which command should I use? And should it be the .EXE file or theappropriatee Frm Form?

    Any assistance could be greatly appreciated.

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: In Visual Basic 6, how do I load and execute an interface project?

    Visual Studio 6 saves projects with the VBP extension. If you open that file in the IDE, it will know how to open the rest of the project.

    The IDE knows how too compile all the code into one .exe that runs the program.

    It also has a SETUP section, which will install all required files the first time users run your program.

    These all work together.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: In Visual Basic 6, how do I load and execute an interface project?

    There is a triangular button on VB's toolbar, this means run.
    There is a menu called Run
    Or you could press F5

    Sorry for this question, but, have you any programming experience? Are you still studying? If your'e still studying, I'd suggest scouring google for info as well

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