Board index » cppbuilder » ... let me count the ways ...
Greg Brewe
![]() CBuilder Developer |
Sun, 13 Jul 2003 00:43:02 GMT
|
Greg Brewe
![]() CBuilder Developer |
Sun, 13 Jul 2003 00:43:02 GMT
... let me count the ways ...
How do I hate Builder? Let me count the ways.
I hate that it forces me to use VCL. |
Jarm
![]() CBuilder Developer |
Sun, 13 Jul 2003 01:14:56 GMT
Re:... let me count the ways ...Quote"Greg Brewer" <nospam.g...@brewer.net> wrote in message Quote> How do I hate Builder? Let me count the ways. command-line tools to do everything you want. There are also a number of other Win32 development tools, each with their own advantages & disdvantages. |
Larry P
![]() CBuilder Developer |
Sun, 13 Jul 2003 02:40:05 GMT
Re:... let me count the ways ...Quote> How do I hate Builder? Let me count the ways. Larry. |
Greg Brewe
![]() CBuilder Developer |
Sun, 13 Jul 2003 04:56:03 GMT
Re:... let me count the ways ...As bad as Builder is, VC++ is worse! Greg Quote"Larry P." <NoS...@NoWhere.com> wrote in message news:3a6dd022_1@dnews... |
Jonathan Arnol
![]() CBuilder Developer |
Sun, 13 Jul 2003 05:05:54 GMT
Re:... let me count the ways ...Quote> I hate that it forces me to use VCL. with straight Win32 code. Have a day out there. Quote> I hate that it automatically updates the include path to something it Quote> I hate that it won't tell me what file it was compiling when it finds a messages have never told this info. Quote> I hate that it won't let me name my dll 85AGA3NX19. Quote> I hate that it forces me to use .h files instead of .hpp files. +=====================================================+ |
Greg Brewe
![]() CBuilder Developer |
Sun, 13 Jul 2003 05:51:01 GMT
Re:... let me count the ways ...Quote"Jonathan Arnold" <jdarn...@buddydog.org> wrote in message Quote> > I hate that it forces me to use VCL. Quote> > I hate that it automatically updates the include path to something it Quote> > I hate that it won't tell me what file it was compiling when it finds a files produced with the list of files in the project. I've been using Borland compilers since 2.0 and it has always been clear what file was being compiled. In 5.1 & 5.2, the message window displayed the name of the file compiled along with error messages for it. Double click on it and it would actually bring up the .cpp file in an editor window. Quote> > I hate that it won't let me name my dll 85AGA3NX19. I suspect that Builder is managing the dll by using a variable name and the variable name is the same as the dll file name. So the dll file name must be a legal C variable name. If you can get it to work, I would love to know how. Quote> > I hate that it forces me to use .h files instead of .hpp files. prefer to use .hpp for C++ header files because it makes it clear that they are C++ headers and not C headers. Also, I frequently work with the files with tools where it is much easier to use *.?pp to pull in all source files. Greg Brewer |
Larry P
![]() CBuilder Developer |
Sun, 13 Jul 2003 05:57:51 GMT
Re:... let me count the ways ...Quote> As bad as Builder is, VC++ is worse! not as "visual" as it's competition. Sure is less buggy. Larry. |
Jonathan Arnol
![]() CBuilder Developer |
Sun, 13 Jul 2003 05:59:09 GMT
Re:... let me count the ways ...Quote> > > I hate that it forces me to use VCL. then use the MFC Wizard, OWL Wizard, or the Console wizard respectively. Quote> > > I hate that it won't tell me what file it was compiling when it finds a broken one. Quote> > > I hate that it won't let me name my dll 85AGA3NX19. Quote> > > I hate that it forces me to use .h files instead of .hpp files. +====================================================+ A committee is a cul-de-sac down which ideas are lured |
Greg Brewe
![]() CBuilder Developer |
Sun, 13 Jul 2003 06:50:28 GMT
Re:... let me count the ways ...Quote"Jonathan Arnold" <jdarn...@buddydog.org> wrote in message Quote> > > > I hate that it forces me to use VCL. that has no use for MFC, OWL, or VCL! Quote> > > > I hate that it won't tell me what file it was compiling when it of the file. Quote> > > > I hate that it won't let me name my dll 85AGA3NX19. if I rename it with explorer, I get an error from Builder that it can't find the file. Greg . |
Clayton M. Arend
![]() CBuilder Developer |
Sun, 13 Jul 2003 07:10:42 GMT
Re:... let me count the ways ...Greg, Quote> > > I hate that it won't let me name my dll 85AGA3NX19. well. My guess is there isn't some internal variable but the name is checked for validity using the same routine that checks variable names (incorrectly and unnecessarily). Quote> > > I hate that it forces me to use .h files instead of .hpp files. When you program in any environment or API you should use the imposed Quote> > > I hate that it reserves the .cpp file of the same name as source file to use but in my view that's just adding one more thing to go wrong. Just let Builder do its thing and use different filenames for your source. It actually makes more sense that way anyhow. My naming scheme goes something like this: Project: NewTest Main form: ntMain Sub form: ntSubForm I find I never have a reason to use the project name for a new source file. Unless I'm making a one module console or DLL project ... but then, with BCB5, you have the ability to use the project filename in those instances. My overview of your message is that you are upset that you can't use the - Clayton |
Clayton M. Arend
![]() CBuilder Developer |
Sun, 13 Jul 2003 07:14:25 GMT
Re:... let me count the ways ...Greg, Quote> Doesn't Console wizard create a console application? I'm creating a .DLL - Clayton |
Vincent Drak
![]() CBuilder Developer |
Sun, 13 Jul 2003 07:59:06 GMT
Re:... let me count the ways ...On Tue, 23 Jan 2001 16:05:54 -0500, Jonathan Arnold Quote<jdarn...@buddydog.org> wrote: "Extended error information" and recompile. This feature was added with C++Builder 5, but is off by default, though I can't imagine why. Error messages will tell you a lot more information regarding the state of the compiler when this setting is on. Vincent Drake |
MJB
![]() CBuilder Developer |
Sun, 13 Jul 2003 08:18:09 GMT
Re:... let me count the ways ...Yeah, right! (Sarcasm!) Michael Quote"Larry P." <NoS...@NoWhere.com> wrote in message news:3a6dfe7b$1_1@dnews... |
Jonathan Arnol
![]() CBuilder Developer |
Sun, 13 Jul 2003 10:00:40 GMT
Re:... let me count the ways ...Quote> Doesn't Console wizard create a console application? I'm creating a .DLL as you please. Quote> > > Some generated header files use .h extensions. You cannot change that. change the file it includes, but then you're all set. +====================================================+ A committee is a cul-de-sac down which ideas are lured |
Larry P
![]() CBuilder Developer |
Sun, 13 Jul 2003 11:28:41 GMT
Re:... let me count the ways ...Quote> Yeah, right! (Sarcasm!) Go to microsoft.public.vc.ide_general and compare it to this newsgroup. The groups will speak for themselves. Anybody that is not being sentimental (which makes no sense as it is just a Larry. |
1. TRichEdit.Lines.Count Giving Incorrect Count?
2. Stop counting blank lines with COUNT?
3. computer connection count (not user connection count)
4. screen page count differs from printed page count
5. delete[] count differs from new[] count
6. Creative ways to hang Windows
7. Four ways scrolling on VGA / SVGA
8. 2 ways to refer field in Data Module
9. Wanted: big databases that are corrupted in interesting ways