BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Delphi 7 vs Delphi 2005

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi Thirdparty Tools (General)
View previous topic :: View next topic  
Author Message
Robert Parrish
Guest





PostPosted: Wed Jul 27, 2005 6:51 pm    Post subject: Delphi 7 vs Delphi 2005 Reply with quote



I'm currently using Delphi 7 but it is driving me crazy!! It keep crashing
and disappearing without any warning. Is Delphi 2005 more stable?

Bob Parrish


Back to top
Brian Moelk
Guest





PostPosted: Wed Jul 27, 2005 7:16 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote



Quote:
I'm currently using Delphi 7 but it is driving me crazy!! It keep crashing
and disappearing without any warning.

Sounds to me you have an unstable third party package installed.

Quote:
Is Delphi 2005 more stable?

Depends who you ask, if you ask me: no. Feel free to do a google news
search for all of the past threads on the topic.

--
Brian Moelk
[email]bmoelk (AT) NObrainendeavorSPAM (DOT) FORc[/email]omME
http://www.brainendeavor.com



Back to top
Jason
Guest





PostPosted: Wed Jul 27, 2005 8:15 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote



Delphi 7 is one thousand times more stable and faster than 2005.
Do you have the latest update of Delphi 7 installed?
If yes, then you have an unstable component installed.



"Robert Parrish" <bob (AT) manateesoftware (DOT) com> wrote

Quote:
I'm currently using Delphi 7 but it is driving me crazy!! It keep crashing
and disappearing without any warning. Is Delphi 2005 more stable?

Bob Parrish




Back to top
Danijel Tkalcec (RealThin
Guest





PostPosted: Wed Jul 27, 2005 9:50 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

Debugger included in Delphi 7 does have a small problem with debugging
multithreaded applications, especially when you're stepping through your
code while execution is taking place in multiple threads at the same time. I
find Delphi 2005 to be a bit more reliable in that matter. But, since I
don't know what kind of problems you're having with Delphi 7, it could be
that some of them are a result of bad third-party code.

--
Danijel Tkalcec

RealThinClient Components
http://www.realthinclient.com


Back to top
Robert Parrish
Guest





PostPosted: Wed Jul 27, 2005 10:10 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

It probably is a bad third party component but I can't find out which one
because Delphi just closes with no indication of an error. It's as if I
clicked on the close button in Delphi. I use a lot of third party controls
in this app.

Bob

"Danijel Tkalcec (RealThinClient)" <dtkalcec (AT) hotmail (DOT) com> wrote

Quote:
Debugger included in Delphi 7 does have a small problem with debugging
multithreaded applications, especially when you're stepping through your
code while execution is taking place in multiple threads at the same time.
I find Delphi 2005 to be a bit more reliable in that matter. But, since I
don't know what kind of problems you're having with Delphi 7, it could be
that some of them are a result of bad third-party code.

--
Danijel Tkalcec

RealThinClient Components
http://www.realthinclient.com




Back to top
Danijel Tkalcec (RealThin
Guest





PostPosted: Wed Jul 27, 2005 10:13 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

But, I also got to say that I preffer working with Delphi 7, because it is a
lot faster and needs less memory. And to eliminate the problems with
debugging multithreaded code, RTC Core connection components have a property
called "MultiThreaded", which I can change to False when debugging and
return back to True for deployment Surprised)

--
Danijel Tkalcec

RealThinClient Components
http://www.realthinclient.com


Back to top
Brian Moelk
Guest





PostPosted: Wed Jul 27, 2005 10:16 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

Quote:
It probably is a bad third party component but I can't find out which one
because Delphi just closes with no indication of an error. It's as if I
clicked on the close button in Delphi. I use a lot of third party controls
in this app.

Using something like madExcept may help you find out which package is
blowing up.

--
Brian Moelk
[email]bmoelk (AT) NObrainendeavorSPAM (DOT) FORc[/email]omME
http://www.brainendeavor.com



Back to top
Danijel Tkalcec (RealThin
Guest





PostPosted: Wed Jul 27, 2005 10:16 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

Does the application work without producing Access Violations or simmilar
unwanted exceptions when compiled and run outside of Delphi?

Is is a multithreaded or a single-threaded app?

Can you reproduce the situation in which Delphi crashes?

--
Danijel Tkalcec

RealThinClient Components
http://www.realthinclient.com


Back to top
Danijel Tkalcec (RealThin
Guest





PostPosted: Wed Jul 27, 2005 10:26 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

If Delphi craches, I doubt there will be any exceptions thrown. I've
experienced Windows killing an app, without giving it a chance to raise an
exception when app code produced nasty access violations in Windows Kernel.
But you're right, you first got to find out which components are causing
Delphi to crash. After that, the only thing you can do is contact the
component vendor and ask for support.

--
Danijel Tkalcec

RealThinClient Components
http://www.realthinclient.com


Back to top
Robert Parrish
Guest





PostPosted: Wed Jul 27, 2005 11:00 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

The app runs fine when it compiles. The problem is it dies during the
compile and no exception is thrown. BTW it is a single thread app. It is
not always changes to the same form that causes it to crash. I wasn't saving
the editor files so I lost some changes. I have since turned that on!
Bob
"Danijel Tkalcec (RealThinClient)" <dtkalcec (AT) hotmail (DOT) com> wrote

Quote:
Does the application work without producing Access Violations or simmilar
unwanted exceptions when compiled and run outside of Delphi?

Is is a multithreaded or a single-threaded app?

Can you reproduce the situation in which Delphi crashes?

--
Danijel Tkalcec

RealThinClient Components
http://www.realthinclient.com




Back to top
Dave Nottage [TeamB]
Guest





PostPosted: Wed Jul 27, 2005 11:29 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

Robert Parrish wrote:

Quote:
The problem is it dies during the compile and no exception is thrown.

I suggest removing sections of code until it compiles OK, keeping track
of what you've removed. It might help to take a backup of the project
prior to starting the process.

--
Dave Nottage [TeamB]

Back to top
Dave Nottage [TeamB]
Guest





PostPosted: Wed Jul 27, 2005 11:51 pm    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

I wrote:

Quote:
I suggest removing sections of code..

By that, I mean starting with a unit (or a few, depending on the size
of the project) at a time. Removing a few lines at a time would be way
too painful <g>

--
Dave Nottage [TeamB]

Back to top
Kevin Powick
Guest





PostPosted: Thu Jul 28, 2005 12:15 am    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

Robert Parrish wrote:

Quote:
It probably is a bad third party component but I can't find out which
one because Delphi just closes with no indication of an error. It's
as if I clicked on the close button in Delphi.

There is an outside chance it is related to a Microsoft update/patch.
Has this happened recently?

I had D6/D7 closing and crashing all the time a few months ago after a
MS patch was installed. Removing the patch, and no longer accepting
auto updates, completely fixed the problem.

I don't remember the details now, but there was a thread in one of the
Delphi (IDE ??) newsgroups about this.


--
Kevin Powick

Back to top
Iwalewa
Guest





PostPosted: Thu Jul 28, 2005 12:49 am    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote


Quote:
The app runs fine when it compiles. The problem is it dies during the
compile and no exception is thrown.

Corrupted files maybe? I had similar problem but with D5 and turned out to
be a corrupted DataModule. Once recreated, the problem disappeared.

Thanks



Back to top
Lauchlan M
Guest





PostPosted: Thu Jul 28, 2005 2:17 am    Post subject: Re: Delphi 7 vs Delphi 2005 Reply with quote

Quote:
It probably is a bad third party component but I can't find out which one
because Delphi just closes with no indication of an error. It's as if I
clicked on the close button in Delphi. I use a lot of third party controls
in this app.

In addition to the other suggestions in this thread, you could use a virtual
PC product such as VMWare. Install Delphi, do a test project. Now load a
copy of your project that is giving you trouble, and strip it down to a
skeleton (the minimum number of units for it to work at all, and using no or
few 3rd party components). Then, one by one, install your 3rd aprty
components, and add the code that uses them back in to the project.

HTH

Lauchlan M



Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi Thirdparty Tools (General) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.