Discussion:
Resetting VFP
Gene Wirchenko
2018-04-27 17:21:58 UTC
Permalink
Hello:

Sometimes, the coding is a breeze, and sometimes, it is not.

Suppose, because of bugs, incomplete functionality, etc., you
have just hung up VFP.

Is there a way to reset VFP? Something that always works?

I know I can abort it and then restart it, but I have had to do
so dozens of times. The thrill palls.

Sincerely,

Gene Wirchenko


_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/***@mtlp000084
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Fred Taylor
2018-04-27 17:42:50 UTC
Permalink
CANCEL
CLOSE ALL
CLEAR ALL

usually works for me.


Fred
Post by Gene Wirchenko
Sometimes, the coding is a breeze, and sometimes, it is not.
Suppose, because of bugs, incomplete functionality, etc., you have
just hung up VFP.
Is there a way to reset VFP? Something that always works?
I know I can abort it and then restart it, but I have had to do so
dozens of times. The thrill palls.
Sincerely,
Gene Wirchenko
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CAJCBksoHhEbLsTtz=***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Rafael Copquin
2018-04-27 17:48:49 UTC
Permalink
I use this:

DECLARE ExitProcess IN kernel32 INTEGER uExitCode
ExitProcess(0)

Put this code in your personal menu (that you attach to VFP), and/or as a
procedure in your app to exit the program.

This calls a Windows API that kills the VFP instance and closes all files.
It never fails.
In my personal menu I have an option called EMERGENCY EXIT.

When I click on it the VFP instance just dies and memory is clean

Rafael Copquin


<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Libre
de virus. www.avg.com
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
Post by Fred Taylor
CANCEL
CLOSE ALL
CLEAR ALL
usually works for me.
Fred
Post by Gene Wirchenko
Sometimes, the coding is a breeze, and sometimes, it is not.
Suppose, because of bugs, incomplete functionality, etc., you have
just hung up VFP.
Is there a way to reset VFP? Something that always works?
I know I can abort it and then restart it, but I have had to do so
dozens of times. The thrill palls.
Sincerely,
Gene Wirchenko
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CAHM-***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Gene Wirchenko
2018-04-27 17:59:25 UTC
Permalink
Post by Fred Taylor
Post by Gene Wirchenko
Sometimes, the coding is a breeze, and sometimes, it is not.
Suppose, because of bugs, incomplete functionality, etc., you have
just hung up VFP.
Is there a way to reset VFP? Something that always works?
I know I can abort it and then restart it, but I have had to do so
dozens of times. The thrill palls.
CANCEL
CLOSE ALL
CLEAR ALL
usually works for me.
I meant hung up, when VFP is not accepting command input.

Sincerely,

Gene Wirchenko


_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/***@mtlp000087
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Fred Taylor
2018-04-27 18:00:55 UTC
Permalink
For that, I just use TaskManager and kill it.


Fred
Post by Fred Taylor
Post by Fred Taylor
Post by Gene Wirchenko
Sometimes, the coding is a breeze, and sometimes, it is not.
Suppose, because of bugs, incomplete functionality, etc., you have
just hung up VFP.
Is there a way to reset VFP? Something that always works?
I know I can abort it and then restart it, but I have had to do so
dozens of times. The thrill palls.
CANCEL
Post by Fred Taylor
CLOSE ALL
CLEAR ALL
usually works for me.
I meant hung up, when VFP is not accepting command input.
Sincerely,
Gene Wirchenko
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CAJCBkspqNdLVyfRqDk3xH6q0jjH7xzabJOyU0zLqEjgBOt+***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Stephen Russell
2018-04-27 18:08:51 UTC
Permalink
Power Off
Power On

Works for all IDEs.
Post by Gene Wirchenko
Sometimes, the coding is a breeze, and sometimes, it is not.
Suppose, because of bugs, incomplete functionality, etc., you have
just hung up VFP.
Is there a way to reset VFP? Something that always works?
I know I can abort it and then restart it, but I have had to do so
dozens of times. The thrill palls.
Sincerely,
Gene Wirchenko
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CAJidMYKfdoBH=nZ0DOz-3vUgJQWSyr9UebVZDc-***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Fernando D. Bozzo
2018-04-27 19:40:54 UTC
Permalink
Depending on the kind of hang, killing VFP with task manager should
suffice, but if in the process of hanging you add a bad programming
practices, bad or no garbage collection, bad use of PC resources and
intermitent hangings that can corrupt RAM, then power off/on is the final
solution.

We have a legacy application on Production, with +20 years of bad
modifications that slowly consumes Server resources and do not restore
them, even if restarting the app, so every week we need to reset de Server
:-(
Post by Gene Wirchenko
Sometimes, the coding is a breeze, and sometimes, it is not.
Suppose, because of bugs, incomplete functionality, etc., you have
just hung up VFP.
Is there a way to reset VFP? Something that always works?
I know I can abort it and then restart it, but I have had to do so
dozens of times. The thrill palls.
Sincerely,
Gene Wirchenko
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ***@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/CAGQ_Jum6n1fpgq7OKoBD2QWV35J79a3m=***@mail.gmail.com
** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.
Continue reading on narkive:
Loading...