Thread: Using .exe on another comp, VC++ .net

  1. #16
    Noobski
    Guest
    you know, I had less problems when I used vc 6, hehe.

  2. #17
    Registered User
    Join Date
    May 2003
    Posts
    5
    If you don't know what a release build is, then you would have the same problem with VC6.

    There are two builds (configurations) you can build your project in (*). You (I assume) are using "Debug". Debug is a slow build that has a lot of, yes you guessed it, Debug information in it. It's only for debugging.

    The release build (If you change the configuration) is a build that is intended to be "Released". It will run faster(**) and wont have debugging information in it.

    You change which config to build in the "Configuration Manager" of the "Build Menu".

    (*) I was being over simplistic. You can have as many configs as you want, but when you create a new project, by default atleast, "Debug" and "Release" will be created.

    (**) It will run faster in most cases.

  3. #18
    Noobski
    Guest
    I tried release build, and it doesn't work. Any more ideas? I'm sending her the dll now, but there should be another way to do it. I cant find the option to make it a static library, but I thought I picked that at the begining when I was making it. If someone knows how to check this in .NET I woulds like to know, thanks!

  4. #19
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    Project Config->Linker->General->MFC libraries
    or something like that, choose "Link statically to MFC".
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Difference in MSVC 6 & MS VC .Net
    By passionate_guy in forum C Programming
    Replies: 1
    Last Post: 01-23-2006, 06:39 AM
  2. .EXE s in .NET
    By -JM in forum C++ Programming
    Replies: 4
    Last Post: 12-06-2005, 12:42 AM
  3. Porting code from VC++6 to VC .NET??
    By dug in forum C++ Programming
    Replies: 10
    Last Post: 01-31-2005, 11:42 AM
  4. IE 6 status bar
    By DavidP in forum Tech Board
    Replies: 15
    Last Post: 10-23-2002, 05:31 PM
  5. Visual J#
    By mfc2themax in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 10-08-2001, 02:41 PM