Thread: Borland or Dev-C++

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    156

    Borland or Dev-C++

    I've been using Dev-C++ since the beginning of my programming career. I've become an intermediate now. Should I download Borland(the warez version, whatever its called)?
    Compiler: MingW(IDE: Bloodshed Dev-C++ 4.01)
    Web Site: Zoo Crew
    Forums: Zoo Boards
    E-mail: [email protected]

    "Do you wanna go to jail or do you wanna go home?!?!" - Alonzo(Training Day)

  2. #2
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    Stick with Dev-C++, it's better. Borland is just a command line compiler for what your talkin' about. Dev-C++ has a visual compiler and such. As you already know

  3. #3
    Registered User Liam Battle's Avatar
    Join Date
    Jan 2002
    Posts
    114

    Wink

    Well i started with and still love to use Microsoft Visual Studio. The Visual C++ compiler and supported libraries are nice.

    I also use the Borland compiler for some work, because they like to keep it supported on some applications. We also Use the IBM AIX Unix compiler as well, since almost all of our applications are ported for both Win-32 Systems and Unix.

    Anyhow just to say as for libaries i like Visual C++ 6.0 the best, and the development environment is nice too.

    Not to mention MSDN library is a huge help at times.
    LB0: * Life once school is done
    LB1: N <- WakeUp;
    LB2: N <- C++_Code;
    LB3: N >= Tired : N <- Sleep;
    LB4: JMP*-3;

  4. #4
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    I thought this was between Borland and Dev-C++, not VS

  5. #5
    Registered User
    Join Date
    Apr 2002
    Posts
    156
    I said the same exact thing in my head.......
    Compiler: MingW(IDE: Bloodshed Dev-C++ 4.01)
    Web Site: Zoo Crew
    Forums: Zoo Boards
    E-mail: [email protected]

    "Do you wanna go to jail or do you wanna go home?!?!" - Alonzo(Training Day)

  6. #6
    Registered User
    Join Date
    Apr 2002
    Posts
    37
    My opinion is that Bloodshed's Dev-C++ is much better than the Borland C++ Compiler. It is free, it is not command-line, and it is cool looking. It's all up to you though.
    Show me a man who cannot bother to do little things, and I'll show you a man who cannot be trusted to do big things.

    -Bill Cosby

  7. #7
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    Tyler just repeated what I said....but he's right, it's up to you.

  8. #8
    Fingerstyle Guitarist taylorguitarman's Avatar
    Join Date
    Aug 2001
    Posts
    564
    Dev-C++ is not a compiler; it's an IDE. It uses MinGW (usually) as the compiler. MinGW is a ported version of GCC.
    Both the GCC and Borland compilers are respectable. I like to use GCC better (many *NIX developers use it).
    To be fair Borland C++ Builder would be similar to Dev-C++, in which case I'd rather use Borland. It has code completion, visual tools, along with many other features and is a better IDE. However, it costs money. If you're going to grab a pirated version of a compiler (and IDE) you might as well make it MS Visual C++. Otherwise, stick with Dev-C++ and MinGW.

  9. #9
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    To be fair Borland C++ Builder would be similar to Dev-C++, in which case I'd rather use Borland. It has code completion, visual tools, along with many other features and is a better IDE.
    Dude, the new beta version of Dev-C++ also has code completion, visual tools(always had this), and Dev-C++ is a better IDE for more reasons.

  10. #10
    Fingerstyle Guitarist taylorguitarman's Avatar
    Join Date
    Aug 2001
    Posts
    564
    By code completion, I mean similar to Code Insight code completion, like that of MSVC (where the function parameters, data type, and member lists pop up). I haven't played much with the Beta yet but I didn't see that feature. If it's there I stand corrected and would definitely take Dev-C++ over Borland.

    I like Dev-C++ very much, it's the best free thing out there (and that's why I recommend it), but it has a little bit to go before I'd get rid of my MSVC (or in UNIX give up Emacs).
    When it gets as good as JCreator Pro (for Java), then I might make the switch.
    That's just my opinion though.

  11. #11
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    Yes, everything I said before is in the newest beta version which is currently available at their site over at http://www.bloodshed.net/dev/ but there are bugs, but they are minor*mostly*

  12. #12
    Fingerstyle Guitarist taylorguitarman's Avatar
    Join Date
    Aug 2001
    Posts
    564
    OK, so kindly tell me how to activate the popup code completion for something like this:

    Code:
    struct Point {
      int x;
      int y;
    };
    
    int main( void ) {
      
      Point pt;
    
      pt.  /* after I type the . a popup menu doesn't come up with
            * x and y so I can choose (like it would in MSVC or Borland).
            * Please let me know how you get that to work. */
    
      return 0;
    }
    If a tree falls in the forest, and no one is around to see it, do the other trees make fun of it?

  13. #13
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    I dunno how to work the thing, I just know that the program has it. Hello, I don't even know what it does*note the censor word*

  14. #14
    Fingerstyle Guitarist taylorguitarman's Avatar
    Join Date
    Aug 2001
    Posts
    564
    That's what I've been trying to tell you. It doesn't have it. The "code completion" it has is really a code insert. Kind of like a template. You press ctrl-space and a popup of code that you tell it you want comes up. Not the cool Code Insight style code completion. That's why I think Borland is better it has Code Insight build in. It's a commercial product, it has to have cool features (and is in fact a better product).
    My guess is that before the official release comes out they will probably have minimal real code completion.
    Just because it has the buzz word "code completion" on the feature list doesn't mean it's like the better IDEs.
    Bottom line, it works great and it's FREE, so if you don't want to spend hundreds on a product, it's the best thing for you.
    If a tree falls in the forest, and no one is around to see it, do the other trees make fun of it?

  15. #15
    I am the worst best coder Quantrizi's Avatar
    Join Date
    Mar 2002
    Posts
    644
    Ok...at least a mojority of the people who replied here think you should get Dev-C++ if you don't wanna spend the $$$

Popular pages Recent additions subscribe to a feed