Thread: Problem in visual c++ 6

  1. #16
    Registered User
    Join Date
    May 2006
    Posts
    903
    If you aren't using templates or STL, I don't see why you would even use C++ ..

  2. #17
    and the hat of sweating
    Join Date
    Aug 2007
    Location
    Toronto, ON
    Posts
    3,545
    If you aren't using templates or STL, I don't see why you would even use C++
    Hmmm, well there's: classes & all the wonderful OOP things that go with them; safer casting; function overloading; exceptions; references; single line comments; RTTI; stricter type safety; and probably a bunch of things that I'm too tired to remember right now.

  3. #18
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Quote Originally Posted by Desolation View Post
    If you aren't using templates or STL, I don't see why you would even use C++ ..
    I've done a lot of commercial C++ development. One of my biggest complaints is the fact that so many developers don't "trust" templates, or the STL, and refuse to use them. Remember that C++ existed for many years before templates even existed.

  4. #19
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    The standard template library is also now one of richest features of the C++ language. Proffesional game developers use it has their holy bible...
    Double Helix STL

  5. #20
    Registered User
    Join Date
    Aug 2007
    Posts
    4
    Quote Originally Posted by hk_mp5kpdw View Post
    You can "put" it anywhere but once you do you must then install it.

    The Visual Studio 2005 can be downloaded here, go down a bit (to the middle of the page and on the right) to where it says "Visual C++ 2005 Express Edition" and click on a language and it will then ask you to save a file vcsetup.exe to your computer. This is a small (3MB) installation program that, when run, will allow you to select from some components to download. If you've got the speed, then I'd suggest downloading the MSDN as well which will give you a 300+ MB download. Once downloaded, the components will be installed automatically by the installation program. You'll need to register it if you use it more than 30 days but that can be done for free.

    Its associated service pack (SP1) is also recommended for download, a direct link to the EXE is here.

    I used Visual Basic 6.0

    my error is C:\Program Files\Microsoft Visual Studio\VC98\LIB\uuid.lib : fatal error LNK1113

    not Visual C++ 2005 Express Edition

  6. #21
    Registered User
    Join Date
    Feb 2006
    Posts
    312
    Quote Originally Posted by franzxavier View Post
    I used Visual Basic 6.0

    my error is C:\Program Files\Microsoft Visual Studio\VC98\LIB\uuid.lib : fatal error LNK1113

    not Visual C++ 2005 Express Edition
    Visual Basic 6.0 won't help you much in writing C++ code. Even if you were using Visual C++ 6.0, its out of date, and doesn't support the latest standard (So features that should be available are likely to be missing, or not work in the way that the standard requires them to)

    You really ought to get VC++ 2005, which is a modern compiler that conforms far more closely to the C++ standard

  7. #22
    Registered User
    Join Date
    Aug 2007
    Posts
    4
    VC++ 2005 if i download this

    it would help clean this

    C:\Program Files\Microsoft Visual Studio\VC98\LIB\uuid.lib : fatal error LNK1113

    or not?

  8. #23
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    VC++ 2005 if i download this

    it would help clean this

    C:\Program Files\Microsoft Visual Studio\VC98\LIB\uuid.lib : fatal error LNK1113

    or not?
    Maybe, maybe not. You have provided very little information.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  9. #24
    Registered User
    Join Date
    Aug 2007
    Posts
    4
    hmmm

    where can i download this C++

    complete

    can anyone help me??

  10. #25
    Registered User hk_mp5kpdw's Avatar
    Join Date
    Jan 2002
    Location
    Northern Virginia/Washington DC Metropolitan Area
    Posts
    3,817
    My previous post gave you a link to where it could be downloaded from along with some instructions.
    "Owners of dogs will have noticed that, if you provide them with food and water and shelter and affection, they will think you are god. Whereas owners of cats are compelled to realize that, if you provide them with food and water and shelter and affection, they draw the conclusion that they are gods."
    -Christopher Hitchens

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Visual studio.net C++ Problem
    By Dina in forum C Programming
    Replies: 5
    Last Post: 07-19-2008, 02:34 PM
  2. Visual C++ Tool Problem
    By wolfban in forum Tech Board
    Replies: 2
    Last Post: 07-23-2005, 07:41 PM
  3. errors in my class....
    By o0obruceleeo0o in forum C++ Programming
    Replies: 9
    Last Post: 04-14-2003, 03:22 AM
  4. Visual Basic Adodc Problem
    By rahat in forum Windows Programming
    Replies: 1
    Last Post: 01-20-2002, 06:55 AM
  5. Microsoft Visual C++ compiler, cast problem?
    By jonnie75 in forum C Programming
    Replies: 5
    Last Post: 11-10-2001, 08:53 AM