Board index » delphi » Delphi GUI & C++ Everything else
redl...@infi.net (Vincent Taijeron)
![]() Delphi Developer |
Wed, 30 Dec 1998 03:00:00 GMT
|
redl...@infi.net (Vincent Taijeron)
![]() Delphi Developer |
Wed, 30 Dec 1998 03:00:00 GMT
Delphi GUI & C++ Everything elseI was just curious about using Delphi and C++ together. How easy is it to merge the two i.e. create the user interface with Is there any advantage to doing this? I would imagine there's a reason why this capability was incorporated When would it be a good idea to incorporate C++ into a delphi program? Thanks, /tj/ |
Bob Cousi
![]() Delphi Developer |
Sun, 03 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseQuoteredl...@infi.net (Vincent Taijeron) wrote: the line between the two bits of code. If you can split the system into loosely coupled modules then you may be OK. Nowadays there are zillions of ways to do this, but they all have a greater or lesser overhead. I'm thinking of a range from DLL, OCX, DDE, to OLE (etc) Quote>Is there any advantage to doing this? 1. You've got 250,000 lines of C++ code already written. 2. You have one Delphi proggie but lots of C++ coders. 3. You find the online help in C++ to be soo much better than Delphi. 4. You love C++/hate Delphi. 5. You want to apply for C++ jobs. These are 'project managment' reasons though. You can do anything in Quote>I would imagine there's a reason why this capability was incorporated -- |
Paul A. Billing
![]() Delphi Developer |
Sun, 03 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseQuoteVincent Taijeron wrote: access a C++ object directly from Delphi and you may have trouble (never tried this). Quote> Is there any advantage to doing this?Use the proper tools for the job. Delphi excels in interface design. Quote> When would it be a good idea to incorporate C++ into a delphi program?There is a lot of number crunching code in C and C++. Why reinvent the guess is that they are superior. The drawback is that you have two development environments. You must Paul |
Vincent Taijer
![]() Delphi Developer |
Mon, 04 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything else{snip} Quote>The drawback is that you have two development environments. You must I was wondering if Delphi can do everything C can do then why would you want to integrate the two. As many people have pointed out to me part of the reason may be that Just wondering. /tj/ |
Randy Goldste
![]() Delphi Developer |
Mon, 04 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseYou know what I think? DLL. I needed a certain routine, that was already \\\\ |
Martin Larsso
![]() Delphi Developer |
Thu, 07 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseQuoteBob Cousins wrote: overloading, but that's just syntactic sugar anyway) MI isn't really necessary, since what it really does is provide M. -- |
Dylan Steinbe
![]() Delphi Developer |
Thu, 07 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything else"Paul A. Billings" <p...@mrtc.org> wrote: Quote>Vincent Taijeron wrote: actually compile C/C++ code into your Delphi apps directly (or vice verse). Obviously there are various issues with this (string-handling, name-mangling, etc...) but it is supported. Quote>> Is there any advantage to doing this?Use the proper tools for the job. Delphi excels in interface design. latest version of Borland C++. I have heard that C/C++ is only 10-15 percent faster than Delphi for most processing. --------------------------------------------------------------- dy...@voicenet.com |
Steve Rencontr
![]() Delphi Developer |
Fri, 08 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseIn message <4sucnu$...@goodnews.voicenet.com>, dy...@voicenet.com (Dylan Steinberg) said: Quote> Delphi 2.0 supports direct linking of .OBJ files. This means you can into forms that are not legal C/C++ names (otherwise collisions would be possible). I'm pretty sure that the resultant names are not legal Pascal either. There are ways around the problem, but it's not quite plug'n'play. ----------------------------------------------------------------------- |
Max R. Anders
![]() Delphi Developer |
Fri, 08 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseOn Sun, 21 Jul 1996 23:00:41 GMT, dy...@voicenet.com (Dylan Steinberg) Quote>>> How easy is it to merge the two i.e. create the user interface with but how about dataexchange ?? If Delphi got the DB-access and you need to inform your C++ part about Example: |
Mark Bratch
![]() Delphi Developer |
Fri, 08 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseQuoteIn article <31ed82ed.1013...@news.foto.infi.net>, redl...@infi.net (Vincent Taijeron) writes: I own Borland C++ 4.5 which can build 32-bit programs, but doesn't I bought Delphi 2.0 for application development. It comes with alot Not elegant, but an economic argument. Mark |
Paul A. Billing
![]() Delphi Developer |
Sun, 10 Jan 1999 03:00:00 GMT
Re:Delphi GUI & C++ Everything elseQuoteMark Bratcher wrote: win32 controls. Of course they're not available in the resource editor :-(, but you can create them dynamically just fine. Use a 3rd party resedit (say, ummm... Microsoft's?) and you're fine. Again, FWIW. Also, 4.51/4.52 are much more stable than 4.50, so press for your free upgrade. Paul |