Thread: VC++ a POS

  1. #31
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    How do I change a project name? I named it something like "dadadafa" but now that it works I want to rename it to the project's REAL name but I can't find the setting.

    [edit] nevermind
    Last edited by Welder; 11-06-2007 at 05:04 PM.

  2. #32
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    Output file is 5 times smaller than with GCC!

  3. #33
    erstwhile
    Join Date
    Jan 2002
    Posts
    2,227
    That'll be the dynamic linking - and you possibly didn't strip executables built with MinGW.
    CProgramming FAQ
    Caution: this person may be a carrier of the misinformation virus.

  4. #34
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    Strip executables built with MinGW?

  5. #35
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    Ken Fitlike, by stripping executables, what do you mean? Like turning off debugging info and such?

  6. #36
    train spotter
    Join Date
    Aug 2001
    Location
    near a computer
    Posts
    3,868
    Quote Originally Posted by mikeman118 View Post
    Also, Visual C++ 2008 Express is out, you should try that one.

    I wouldn't just yet......
    "Man alone suffers so excruciatingly in the world that he was compelled to invent laughter."
    Friedrich Nietzsche

    "I spent a lot of my money on booze, birds and fast cars......the rest I squandered."
    George Best

    "If you are going through hell....keep going."
    Winston Churchill

  7. #37
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    Quote Originally Posted by novacain View Post
    I wouldn't just yet......
    Why not? I just downloaded it and tried it and it works fine. I see no differences between 2005 and 2008.

  8. #38
    train spotter
    Join Date
    Aug 2001
    Location
    near a computer
    Posts
    3,868
    Because not many projects you DL will run on it.
    Not fully tested (ie SP1 is yet to be released).
    It is not in use by commercial software houses yet (all I have worked for still use MSVC 6 or 2003).

    Not really enough reasons (now I write them down), just my opinion.......


    In MSVC 2002 (shortest lived MSVC release) there are lots of 'interesting' bugs...

    Like the one where you add a border to a TAB control but MSVC 2002 also adds the 'ownerdraw' style to the TAB (meaning the TAB control will no longer appear on screen).

    The only way to find/fix this was to search the script.rc file (MSVC generated) for the TAB control's declaration and manually edit the styles.

    This assumes you know what the bug is, know where to find the TAB's declaration, know what style to remove and can do so without breaking the entire projects resources.
    "Man alone suffers so excruciatingly in the world that he was compelled to invent laughter."
    Friedrich Nietzsche

    "I spent a lot of my money on booze, birds and fast cars......the rest I squandered."
    George Best

    "If you are going through hell....keep going."
    Winston Churchill

  9. #39
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    Maybe I will just continue to tinker with 2005 then.

    Thanks novacain.

  10. #40
    erstwhile
    Join Date
    Jan 2002
    Posts
    2,227
    Quote Originally Posted by Welder View Post
    Strip executables built with MinGW?
    MinGW faq: Why is my C++ binary so large?

    Building with the -s linker switch does the same thing as that faq describes ie removes the debugging information.
    CProgramming FAQ
    Caution: this person may be a carrier of the misinformation virus.

  11. #41
    Registered User Welder's Avatar
    Join Date
    Oct 2007
    Location
    Washington
    Posts
    100
    Quote Originally Posted by Ken Fitlike View Post
    MinGW faq: Why is my C++ binary so large?

    Building with the -s linker switch does the same thing as that faq describes ie removes the debugging information.
    Alright, that's what I thought. Thanks.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. file i/o dilemma
    By adramalech in forum C Programming
    Replies: 27
    Last Post: 11-11-2008, 12:30 AM
  2. seperate and add pos and neg numbers
    By Chris630 in forum C++ Programming
    Replies: 2
    Last Post: 03-27-2007, 06:14 PM
  3. makefile exported by vc 6.0 doesn't work
    By wow in forum Windows Programming
    Replies: 7
    Last Post: 03-24-2006, 04:20 PM
  4. Debug help needed
    By Achy in forum C Programming
    Replies: 3
    Last Post: 11-16-2005, 03:27 PM
  5. determine if input pos or neg ?
    By bluenoser in forum C Programming
    Replies: 2
    Last Post: 10-20-2002, 08:49 PM