| View previous topic :: View next topic |
| Author |
Message |
Stanley Guest
|
Posted: Mon Jan 02, 2006 12:04 pm Post subject: program does not return to design time view |
|
|
I am having problems with my program. After I compile the
program and close it out, the program does not return back to
design time mode. HELP.
Stanley
|
|
| Back to top |
|
 |
Patrick Guest
|
Posted: Mon Jan 02, 2006 2:21 pm Post subject: Re: program does not return to design time view |
|
|
Suddenly after 3+ years in BCB 5 I am having this same problem.
Have fiddled with Environment checkbox options:
Hide designers on run
Minimize on run
with no relief.
How can I return to the previous behavior (IDE hides on program run and
shows on program close) ?
TIA Patrick
--------------------------------------
"Stanley" <stanley (AT) umail (DOT) com> wrote
| Quote: |
I am having problems with my program. After I compile the
program and close it out, the program does not return back to
design time mode. HELP.
Stanley
|
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Mon Jan 02, 2006 10:31 pm Post subject: Re: program does not return to design time view |
|
|
"Stanley" <stanley (AT) umail (DOT) com> wrote
| Quote: | I am having problems with my program. After I compile
the program and close it out, the program does not return
back to design time mode. HELP.
|
Assuming that you are running the program within the IDE to begin with, then
the only way it would not release control back to the IDE is if the
program's process is not fully shutting down. Do you have any threads in
your code? Any open files? A process cannot fully terminate until all of
its handles have been closed/freed.
Gambit
|
|
| Back to top |
|
 |
Roddy Pratt Guest
|
Posted: Mon Jan 02, 2006 11:08 pm Post subject: Re: program does not return to design time view |
|
|
"Remy Lebeau (TeamB)" <no.spam (AT) no (DOT) spam.com> wrote
| Quote: | Assuming that you are running the program within the IDE to begin with,
then the only way it would not release control back to the IDE is if the
program's process is not fully shutting down. Do you have any threads in
your code? Any open files? A process cannot fully terminate until all of
its handles have been closed/freed.
|
Use the debugger to "Break" the program after you think it should have
terminated. This should show you what's stuck where...
- Roddy
|
|
| Back to top |
|
 |
Patrick Guest
|
Posted: Tue Jan 03, 2006 11:58 am Post subject: Re: program does not return to design time view |
|
|
In my case, I am running in the IDE, and all compiled programs refuse to
show the IDE upon termination. Even New Application->CompileRun->Terminate.
The IDE shows minimized on the Taskbar, and clicking on it brings it back.
Environment checkbox options:
Hide designers on run
Minimize on run
have no effect.
This is a new behavior after 3+ years of BCB5 showing the IDE after program
termination.
Patrick
----------------------------------
"Remy Lebeau (TeamB)" <no.spam (AT) no (DOT) spam.com> wrote
| Quote: |
"Stanley" <stanley (AT) umail (DOT) com> wrote in message
news:43b924dd$1 (AT) newsgroups (DOT) borland.com...
I am having problems with my program. After I compile
the program and close it out, the program does not return
back to design time mode. HELP.
Assuming that you are running the program within the IDE to begin with,
then the only way it would not release control back to the IDE is if the
program's process is not fully shutting down. Do you have any threads in
your code? Any open files? A process cannot fully terminate until all of
its handles have been closed/freed.
Gambit
|
|
|
| Back to top |
|
 |
|