Reputation: 107
I am trying to install a commercial Package by loading the DPROJ file, Compiling it (succeeds) and then Installing. When I try to Install, the compile progress box appears for an instant, and then the IDE becomes unresponsive. It is not using significant CPU resources, so it is not in a tight loop.
How do I go about attempting to diagnose what the problem is?
Upvotes: 1
Views: 366
Reputation: 84540
This really isn't much to go on--it would really help if we knew the name of the package and which version of Delphi you were using--but I'll take a crack at it. At least you've done a good job of describing the problem you're observing. A lot of new users don't even do that much.
You said you were able to compile. I hope that means this came with source. If not--if you got a commercial, DCU-only library--you've been ripped off. Call up the people who created it and take them to task over it.
But let's assume you have source code. If so, this problem is actually fairly easy to track down. Here's what you do:
Run->Attach to Process...
WaitFor<something>Object(s)
in the main thread.From there, have fun debugging! That's all the help I can give you based on the information available, but it should be enough to get you started.
Upvotes: 10