Re: Program Headers

2014-04-29 Thread Laurie Alvey
Thanks Vincent - that's what I was thinking of. Thanks also to all who
replied.

Laurie


On 26 April 2014 16:15, Vincent Teachout tea...@taconic.net wrote:

 Laurie Alvey wrote:

 Years ago I used something in intellisense (at least, I think was in
 intellisense)  to automatically insert a comment block at the beginning of
 a program or procedure. As I have changed computers and reinstalled VFP a
 few times (fatal crashes), I have lost whatever I did and can't remember
 how it was done.

 Can anyone help?



 I do this in intellisense manager by creating a custom script, which I
 then call by typing fhspace (for function header - obviously you could do
 the same with program header)  Here is the script I wrote - feel free to
 copy and modify:

 LPARAMETERS oFoxcode
 LOCAL cFunName, cParmList, cParmStatement

 IF oFoxcode.Location = 0
RETURN header
 ENDIF

 oFoxcode.valuetype = V

 cFunName  = InputBox(Function Name?, Enter Function Name,
 Function_Name)
 cParmList = InputBox(Parameters?, Enter Optional parameter(s), )

 IF !Empty(cparmList)
 cParmStatement = LPARAMETERS  + cParmList
 else
 cParmStatement = 
 endif


 TEXT TO lcHeader TEXTMERGE NOSHOW
 **
 * Function...: cFunName
 * Author.: Vincent Teachout
 * Date...: mdy(date()) , time() 
 * Notice.: Copyright © TRANSFORM(Year(date()) ) , Caracal Software.
 * ...: All Rights Reserved.
 * Purpose: ~
 * Parameters.: cParmList
 * Returns:
 * Compiler...: version() 
 **
 FUNCTION cFunName
 cParmStatement

 RETURN
 ENDFUNC
 ENDTEXT

 RETURN lcHeader


[excessive quoting removed by server]

___
Post Messages to: ProFox@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/camvtr9cnojmfa9v7fezvhmzd4j301+1wyo9+n8mcs09chh6...@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.

Re: Running a Batch File from VFP

2014-04-29 Thread AndyHC

! set me=Andy   Command Prompt screen flashes
?GETENV(me)''

i.e the environment variable lasts only the duration of the command 
window (shell) - the same is true if you run a Command Prompt.



On 29/04/2014 01:30, Gene Wirchenko wrote:

At 05:47 2014-04-28, Man-wai Chang chan...@gmail.com wrote:

You can't add environment variables into a sub-shell, I believe.


 Your belief is incorrect.  My debugging code in the batch file 
included echoing the environment variable value that I had set, and up 
to the point of failure, they were set.


 I might have run into some limit on how much environment space I 
can use, and I was hoping someone could tell me if this is the case 
and what to do about it.



What if you use a text file instead to store and pass parameters?


 I do not know how to extract the parameters in the batch file.  
How would one do this?


 I decided to reorder the parameters, because I found that I have 
to have multiple parameters for multiple attachments.  With that, I 
can no longer simply check the number of parameters.



Another trick is to programmatically generate the whole batch file
with parameters stored, then execute it.


 I suppose so, but I prefer not to do that.  It would be a pain to 
debug.


Sincerely,

Gene Wirchenko



[excessive quoting removed by server]

___
Post Messages to: ProFox@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/535f9efe.8000...@hawthorncottage.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.


FoxCharts

2014-04-29 Thread Joerg Arand
Hi all, 

is it possible with foxcharts to generate true xy line/point charts (x-axis
decimal values like 1.0, 1.02, 1.05; not categories like years in the
samples).
I want to generate charts for growth/length and head circumference  for
newborns and children with percentiles
I can't find information in the documentation

Dr. med. Jörg Arand
Mail: Neodat(at)web.de

-Original Message-
From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On
Behalf Of Cesar
Sent: Friday, May 30, 2008 7:09 AM
To: profoxt...@leafe.com
Subject: FoxCharts

Hi Profoxers,

Recently I've released a new version of FoxCharts.
Still in Alpha, this version is destinated to people that have interest in
the tool and can help testing and improving it.

Since the first release that was announced here lots of improvements were
added, new charts and functionalities.
I'm really close to turn it to Beta Release, I'd just like people to test it
and send me their thoughts and bugs or fixes.

If someone is interested in contributing feel free to contact me directly,
or via CodePlex, Profox, blog comment.

More info here:
http://weblogs.foxite.com/vfpimaging/archive/2008/05/21/6080.aspx


I'm posting this here because there was a deep discussion about charts in
this forum recently.
So I'd deeply apreciate your comments or suggestions, specially at this
moment, before the class is moved to production.


If you are interested in testing it, please go to the FoxCharts latest
relase page at codeplex, and download the most recent version of the class,
FoxCharts_20080530.rar
https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=VFPXRelea
seId=13477


Thanks in advance !

Regards

Cesar 


--- StripMime Report -- processed MIME parts --- multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@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/001e01cf62c5$5a55b740$0f0125c0$@t-online.de
** 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.


Re: [ADMIN] Another Donation Request

2014-04-29 Thread mbsoftwaresolutions

On 2014-04-28 14:58, Ed Leafe wrote:

On Apr 21, 2014, at 7:53 AM, Ed Leafe e...@leafe.com wrote:

It's time for my semi-annual request to the ProFox community to show 
your appreciation for this list by contributing to a charitable cause. 
On Saturday, May 10 I will be participating in the Tour de Cure, a 
bicycle ride to help raise money and awareness for diabetes research. 
I'll be doing a 65-mile ride (course:http://tw.gs/Tzv8hX).


To donate, please go to http://j.mp/1kSa4WF and give whatever is 
comfortable. I appreciate the support that this community has shown in 
the past, and have no doubt that you'll be able to help my surpass my 
fundraising goal of $200.


Wow, I can't believe the incredible support from the ProFox community.
After my request last week you blew me way past my minimum goal of
$200. So I've increased it to $500! I hope that anyone who hasn't yet
donated can do what you can to help reach this new goal, which will
help fund research into ending diabetes.




Done.  Challenged Steve and Kurt on facebook to step up too!  :-)

___
Post Messages to: ProFox@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/aaeaf9710c111eb5deb313a828bf8...@mbsoftwaresolutions.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.


Re: Running a Batch File from VFP

2014-04-29 Thread Alan Bourke
Are you getting into territory here where PowerShell would be a better
proposition?

___
Post Messages to: ProFox@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/1398777102.25009.111668021.39920...@webmail.messagingengine.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.


Re: [ADMIN] Another Donation Request

2014-04-29 Thread Kurt @ VR-FX
OK Mike - so THAT is what just quickly popped up on my Phone. To be 
quite honest - I am in somewhat of a similar situation to Virgil - and 
in a bit of a financial crisis of my own. So - at this point in time - 
although I would love to donate, I'm not in a fiscally viable situation 
right now to do it...


:-(
-K-


On 4/29/2014 9:15 AM, mbsoftwaresoluti...@mbsoftwaresolutions.com wrote:

On 2014-04-28 14:58, Ed Leafe wrote:

On Apr 21, 2014, at 7:53 AM, Ed Leafe e...@leafe.com wrote:

It's time for my semi-annual request to the ProFox community to show 
your appreciation for this list by contributing to a charitable 
cause. On Saturday, May 10 I will be participating in the Tour de 
Cure, a bicycle ride to help raise money and awareness for diabetes 
research. I'll be doing a 65-mile ride (course:http://tw.gs/Tzv8hX).


To donate, please go to http://j.mp/1kSa4WF and give whatever is 
comfortable. I appreciate the support that this community has shown 
in the past, and have no doubt that you'll be able to help my 
surpass my fundraising goal of $200.


Wow, I can't believe the incredible support from the ProFox community.
After my request last week you blew me way past my minimum goal of
$200. So I've increased it to $500! I hope that anyone who hasn't yet
donated can do what you can to help reach this new goal, which will
help fund research into ending diabetes.




Done.  Challenged Steve and Kurt on facebook to step up too!  :-)


[excessive quoting removed by server]

___
Post Messages to: ProFox@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/535fa6b0.9030...@optonline.net
** 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.


RE: FoxCharts

2014-04-29 Thread Allen
Hi Jörg
You might be better to use the discussion on codeplex where the author may
respond.
Al

-Original Message-

Hi all, 

is it possible with foxcharts to generate true xy line/point charts (x-axis
decimal values like 1.0, 1.02, 1.05; not categories like years in the
samples).
I want to generate charts for growth/length and head circumference  for
newborns and children with percentiles I can't find information in the
documentation


___
Post Messages to: ProFox@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/006901cf63ae$064a0f90$12de2eb0$@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.


Re: [ADMIN] Another Donation Request

2014-04-29 Thread Ed Leafe
On Apr 29, 2014, at 8:18 AM, Kurt @ VR-FX v...@optonline.net wrote:

 OK Mike - so THAT is what just quickly popped up on my Phone. To be quite 
 honest - I am in somewhat of a similar situation to Virgil - and in a bit of 
 a financial crisis of my own. So - at this point in time - although I would 
 love to donate, I'm not in a fiscally viable situation right now to do it...

Please don't feel guilty if you're not in a position to donate. I'm not trying 
to shame anyone into parting with money they can't afford.

If you're able to spare a few bucks for a good cause, that's awesome, and 
greatly appreciated. If not, you can cheer me on as I try to ride 70 miles in 
what's certain to be a very hot day - this is south Texas, after all!


-- Ed Leafe



--- StripMime Report -- processed MIME parts ---
multipart/signed
  text/plain (text body -- kept)
  application/pgp-signature
---

___
Post Messages to: ProFox@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/6cce426e-5d97-4996-88c6-004bd4c40...@rackspace.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.


Re: [ADMIN] Another Donation Request

2014-04-29 Thread Virgil Bierschwale
I can't do it either..

But if you ever enter one of those rides that go through harper, give me a
shout as a lot of them seem to like riding these hills.

And yes, I don't have a/c yet, so I am noticing that it is starting to warm
up and it will be HOT pretty soon.


On Tue, Apr 29, 2014 at 8:34 AM, Ed Leafe ed.le...@rackspace.com wrote:

 On Apr 29, 2014, at 8:18 AM, Kurt @ VR-FX v...@optonline.net wrote:

  OK Mike - so THAT is what just quickly popped up on my Phone. To be
 quite honest - I am in somewhat of a similar situation to Virgil - and in a
 bit of a financial crisis of my own. So - at this point in time - although
 I would love to donate, I'm not in a fiscally viable situation right now to
 do it...

 Please don't feel guilty if you're not in a position to donate. I'm not
 trying to shame anyone into parting with money they can't afford.

 If you're able to spare a few bucks for a good cause, that's awesome, and
 greatly appreciated. If not, you can cheer me on as I try to ride 70 miles
 in what's certain to be a very hot day - this is south Texas, after all!


 -- Ed Leafe



 --- StripMime Report -- processed MIME parts ---
 multipart/signed
   text/plain (text body -- kept)
   application/pgp-signature
 ---

[excessive quoting removed by server]

___
Post Messages to: ProFox@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/CAPuy6VMbtwrgEj9bAHvHc=ntdtxubd4ezo0mg-p0yvmr9ef...@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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ted Roche
Ed:

i just started getting messages at the tail end of this thread. I
suspect some over-eager spam filtering along the way dropped the first few.

I couldn't find this thread in the archives, either. With Include
Off-Topic and Include Non-Fox checked, a subject search for
Donation nor an author search for Leafe turned up the thread.

Are [ADMIN] threads excluded, perhaps?

IAC, could you repost the original request? TIA.

On 04/29/2014 09:34 AM, Ed Leafe wrote:
 On Apr 29, 2014, at 8:18 AM, Kurt @ VR-FX v...@optonline.net wrote:

 OK Mike - so THAT is what just quickly popped up on my Phone. To be quite 
 honest - I am in somewhat of a similar situation to Virgil - and in a bit of 
 a financial crisis of my own. So - at this point in time - although I would 
 love to donate, I'm not in a fiscally viable situation right now to do it...
 Please don't feel guilty if you're not in a position to donate. I'm not 
 trying to shame anyone into parting with money they can't afford.

 If you're able to spare a few bucks for a good cause, that's awesome, and 
 greatly appreciated. If not, you can cheer me on as I try to ride 70 miles in 
 what's certain to be a very hot day - this is south Texas, after all!


 -- Ed Leafe



 --- StripMime Report -- processed MIME parts ---
 multipart/signed
   text/plain (text body -- kept)
   application/pgp-signature
 ---

[excessive quoting removed by server]

___
Post Messages to: ProFox@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/535fab8e.3070...@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.


Re: [ADMIN] Another Donation Request

2014-04-29 Thread Kurt @ VR-FX
Thanks for the feedback Ed. No - not really feeling guilty - it was more 
like a statement is all.


So - Go for it - Rock On with your Bike. But, hopefully you won't pass 
out from Heat Exhaustion!


:-)
-K-


On 4/29/2014 9:34 AM, Ed Leafe wrote:

On Apr 29, 2014, at 8:18 AM, Kurt @ VR-FX v...@optonline.net wrote:


OK Mike - so THAT is what just quickly popped up on my Phone. To be quite 
honest - I am in somewhat of a similar situation to Virgil - and in a bit of a 
financial crisis of my own. So - at this point in time - although I would love 
to donate, I'm not in a fiscally viable situation right now to do it...

Please don't feel guilty if you're not in a position to donate. I'm not trying 
to shame anyone into parting with money they can't afford.

If you're able to spare a few bucks for a good cause, that's awesome, and 
greatly appreciated. If not, you can cheer me on as I try to ride 70 miles in 
what's certain to be a very hot day - this is south Texas, after all!


-- Ed Leafe



--- StripMime Report -- processed MIME parts ---
multipart/signed
   text/plain (text body -- kept)
   application/pgp-signature
---


[excessive quoting removed by server]

___
Post Messages to: ProFox@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/535facaf.9090...@optonline.net
** 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.


[OT] Test

2014-04-29 Thread Adam Buckland
Ping!


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

___
Post Messages to: ProFox@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/cf856b7d.1ed63%adam.buckl...@eurohill.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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ed Leafe
On Apr 29, 2014, at 8:39 AM, Ted Roche tedro...@gmail.com wrote:

 I couldn't find this thread in the archives, either. With Include
 Off-Topic and Include Non-Fox checked, a subject search for
 Donation nor an author search for Leafe turned up the thread.

Ugh - looks like the last message in the archive was April 17. Guess I need to 
figure that one out first.

 IAC, could you repost the original request? TIA.

Sure:

It's time for my semi-annual request to the ProFox community to show your 
appreciation for this list by contributing to a charitable cause. On Saturday, 
May 10 I will be participating in the Tour de Cure, a bicycle ride to help 
raise money and awareness for diabetes research. I'll be doing a 65-mile ride 
(course: http://tw.gs/Tzv8hX).

To donate, please go to http://j.mp/1kSa4WF and give whatever is comfortable. I 
appreciate the support that this community has shown in the past, and have no 
doubt that you'll be able to help my surpass my fundraising goal of $200.


-- Ed Leafe







--- StripMime Report -- processed MIME parts ---
multipart/signed
  text/plain (text body -- kept)
  application/pgp-signature
---

___
Post Messages to: ProFox@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/57d1a12a-3623-4e82-b69e-7d728b910...@leafe.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.


Fwd: I would like to hire you to represent 869, 000 former STEM workers

2014-04-29 Thread Virgil Bierschwale
Folks, I could use your help in forwarding this message to any and all
current, or former software or hardware types.

Sorry for not putting [NF] in the subject line, but gmail won't let me edit
it and my own machine is currently down.

Most likely they will not respond to just me, but they will respond if a
million or more contact them.

Thank You for your assistance,

Virgil


-- Forwarded message --
From: Virgil Bierschwale vbier...@gmail.com
Date: Tue, Apr 29, 2014 at 8:28 AM
Subject: I would like to hire you to represent 869,000 former STEM workers
To: ask...@usdoj.gov


On the following link, you will see that America created a little over
869,000 computer and mathematical jobs between 2003 and 2013.

http://www.bls.gov/oes/tables.htm

Look in the May National tables under 15-

You may also want to look at 17- which is Architecture and Engineering
Occupations

On the following link you will see that we issued a little over 85,000 H-1B
visas per year.

http://www.uscis.gov/sites/default/files/USCIS/Resources/Reports%20and%20Studies/Immigration%20Forms%20Data/Employment-based/H1BFY09-12.pdf

If you subtract the 850,000 H-1B visas from the 869,000 jobs created, you
will see that we have only created a little over 19,000 jobs in 10 years
for Americans in the STEM industry.

Most likely each of you that will read this email have children, and
hopefully they are pursuing a career in the STEM industry, and if they are,
I am sure it is costing you a lot of money to send them to school.

If Americans only get access to 2% of all STEM jobs created, as evidenced
by what I have shown you here, and your own research from your recent
antitrust case with Google, Apple, and others.

What will that do for your children?

Will their future have them living out of a storage shed with no
electricity or running water as I am doing?

I have no money to hire you with as I saw my income go from over 100,000 in
2002 to 8,001 in 2012.

I do have over 30 years technology experience in hardware and software
wearing all hats at all levels.

You can bet that there are at least 869,000 other Americans going through
what I have gone through.

Probably many times that number.

If you will bring the case, they will join in.

Virgil Bierschwale
Keep America At Work
(830) 377-5729
vbier...@gmail.com


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

___
Post Messages to: ProFox@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/capuy6vmpleonmgmbwcvk7vxwzvspw2wvgzbcqg6qepwqlxk...@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.


Re: Running a Batch File from VFP

2014-04-29 Thread Man-wai Chang
Generating the whole batch file is the simplest solution, and possibly
the more secured one!

What if the batch file you wanna call was modified by someone, somewhere? :)

Injecting environment variables into a command sub-shell is a
dangerous idea anyway

On Tue, Apr 29, 2014 at 9:11 PM, Alan Bourke alanpbou...@fastmail.fm wrote:
 Are you getting into territory here where PowerShell would be a better
 proposition?

-- 
 .~. Might, Courage, Vision. SINCERITY!
/ v \ 64-bit Ubuntu 9.10 (Linux kernel 2.6.39.3)
/( _ )\ http://sites.google.com/site/changmw
^ ^ May the Force and farces be with you!

___
Post Messages to: ProFox@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/CAGv=mjbngdtii7cfahxtn6quhoqy6m518daowkumxftqaer...@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.


Re: Running a Batch File from VFP

2014-04-29 Thread Man-wai Chang
Is this another alternative?
http://stackoverflow.com/questions/3803581/setting-a-system-environment-variable-from-a-windows-batch-file

On Sat, Apr 26, 2014 at 2:32 AM, Gene Wirchenko ge...@telus.net wrote:
 Dear Vixens and Reynards:
  The batch file was for sending E-mails using a program used by a
 co-worker at the main office.  My code stored each of the parameters into an
 environment variable.  At the end, the E-mail program was invoked and error
 return data captured.  The problem I ran into is that my batch file would
 simply abort in the middle.  There was no error message, and by adding echo

-- 
 .~. Might, Courage, Vision. SINCERITY!
/ v \ 64-bit Ubuntu 9.10 (Linux kernel 2.6.39.3)
/( _ )\ http://sites.google.com/site/changmw
^ ^ May the Force and farces be with you!

___
Post Messages to: ProFox@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/CAGv=mjb8sevjxv8gokvpat9-fafzsgvyfj8naqajyh34bor...@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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread GaryT

Ted,
Ed's original message was posted on April 21, just eight-nine days ago.
It's still showing up in my current month messages.
GaryT


On 29/04/14 23:39, Ted Roche wrote:

Ed:

i just started getting messages at the tail end of this thread. I
suspect some over-eager spam filtering along the way dropped the first few.

I couldn't find this thread in the archives, either. With Include
Off-Topic and Include Non-Fox checked, a subject search for
Donation nor an author search for Leafe turned up the thread.

Are [ADMIN] threads excluded, perhaps?




___
Post Messages to: ProFox@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/535fbc4d.1030...@taig.net
** 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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ted Roche
On Tue, Apr 29, 2014 at 10:50 AM, GaryT g...@taig.net wrote:

 Ted,
 Ed's original message was posted on April 21, just eight-nine days ago.
 It's still showing up in my current month messages.
 GaryT


Thanks, Gary.

My current projects are requiring a lot of switching between workstations,
and it's possible it slipped between the cracks of my primary workstation
(Linux and Thunderbird) and my others (Linux w/ Gmail, Wince-even with
Gmail) and/or flagged by one or another of the anti-spam services
(Donate! Click here! and url shorteners?)

I was able to find the place to donate.

-- 
Ted Roche
Ted Roche  Associates, LLC
http://www.tedroche.com


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

___
Post Messages to: ProFox@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/cacw6n4svzjskx7bs01+a59oqueajetx+dvdddltfk_abmtm...@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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ed Leafe
On Apr 29, 2014, at 8:46 AM, Ed Leafe e...@leafe.com wrote:

 Ugh - looks like the last message in the archive was April 17. Guess I need 
 to figure that one out first.

OK, first test message to see what's going on.

-- Ed Leafe







--- StripMime Report -- processed MIME parts ---
multipart/signed
  text/plain (text body -- kept)
  application/pgp-signature
---

___
Post Messages to: ProFox@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/03b5d43a-0904-430e-9612-eadefe40a...@leafe.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.


Re: FoxCharts

2014-04-29 Thread Koen Piller
Hi,
I dont know what is wrong with samples like JN_Sample 2, Foxcharts in a
Pageframe, Multiple Charts - Super Toys, etc they all show true x/y line
chart. If not please publish an image with sample data how you would like
the chart to be shown.
Regards,
Koen
P.S. I agree with the other responder better post your question in either
Foxite or GDIPlus forum


2014-04-28 11:36 GMT+02:00 Joerg Arand joerg.ar...@t-online.de:

 Hi all,

 is it possible with foxcharts to generate true xy line/point charts (x-axis
 decimal values like 1.0, 1.02, 1.05; not categories like years in the
 samples).
 I want to generate charts for growth/length and head circumference  for
 newborns and children with percentiles
 I can't find information in the documentation

 Dr. med. Jörg Arand
 Mail: Neodat(at)web.de

 -Original Message-
 From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com]
 On
 Behalf Of Cesar
 Sent: Friday, May 30, 2008 7:09 AM
 To: profoxt...@leafe.com
 Subject: FoxCharts

 Hi Profoxers,

 Recently I've released a new version of FoxCharts.
 Still in Alpha, this version is destinated to people that have interest in
 the tool and can help testing and improving it.

 Since the first release that was announced here lots of improvements were
 added, new charts and functionalities.
 I'm really close to turn it to Beta Release, I'd just like people to test
 it
 and send me their thoughts and bugs or fixes.

 If someone is interested in contributing feel free to contact me directly,
 or via CodePlex, Profox, blog comment.

 More info here:
 http://weblogs.foxite.com/vfpimaging/archive/2008/05/21/6080.aspx


 I'm posting this here because there was a deep discussion about charts in
 this forum recently.
 So I'd deeply apreciate your comments or suggestions, specially at this
 moment, before the class is moved to production.


 If you are interested in testing it, please go to the FoxCharts latest
 relase page at codeplex, and download the most recent version of the class,
 FoxCharts_20080530.rar

 https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=VFPXRelea
 seId=13477


 Thanks in advance !

 Regards

 Cesar


 --- StripMime Report -- processed MIME parts --- multipart/alternative
   text/plain (text body -- kept)
   text/html
 ---

[excessive quoting removed by server]

___
Post Messages to: ProFox@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/cacuu1st+cmb3r+pwqrpairq-5fmdt0uk3ypqxkbp6fpyk0s...@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.

Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ed Leafe
On Apr 29, 2014, at 10:33 AM, Ed Leafe e...@leafe.com wrote:

 Ugh - looks like the last message in the archive was April 17. Guess I need 
 to figure that one out first.
 
 OK, first test message to see what's going on.

Another test...


-- Ed Leafe






___
Post Messages to: ProFox@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/5657f2da-0bf1-498f-a749-3144ec0dd...@leafe.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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ed Leafe
On Apr 29, 2014, at 11:28 AM, Ed Leafe e...@leafe.com wrote:

 Another test...

Looks like it's fixed. Back to your regularly scheduled programming!


-- Ed Leafe







--- StripMime Report -- processed MIME parts ---
multipart/signed
  text/plain (text body -- kept)
  application/pgp-signature
---

___
Post Messages to: ProFox@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/407c15a6-4513-4d60-8ab4-02f5b816c...@leafe.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.


Re: [OT] Test

2014-04-29 Thread mbsoftwaresolutions

On 2014-04-29 09:45, Adam Buckland wrote:

Ping!



Pong!

___
Post Messages to: ProFox@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/1af2471c2a2b42900b2812d08d57b...@mbsoftwaresolutions.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.


Re: Running a Batch File from VFP

2014-04-29 Thread Gene Wirchenko

At 05:45 2014-04-29, you wrote:

! set me=Andy   Command Prompt screen flashes
?GETENV(me)''

i.e the environment variable lasts only the duration of the command 
window (shell) - the same is true if you run a Command Prompt.


 True, but irrelevant.

 The batch file was terminating in the middle with no error 
message.  The environment variables that I was setting were for use 
later in the batch file, but that part did not get executed.


[snip]

Sincerely,

Gene Wirchenko


___
Post Messages to: ProFox@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/
** 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.


Re: Running a Batch File from VFP

2014-04-29 Thread Gene Wirchenko

At 07:36 2014-04-29, Man-wai Chang chan...@gmail.com wrote:

Generating the whole batch file is the simplest solution, and possibly
the more secured one!

What if the batch file you wanna call was modified by someone, somewhere? :)


 You mean the batch file in the same directory as the VFP system?


Injecting environment variables into a command sub-shell is a
dangerous idea anyway


 What dangerous???

 I am setting parameters for a program being called.

[snip]

Sincerely,

Gene Wirchenko


___
Post Messages to: ProFox@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/
** 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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Paul Hill
On 29 April 2014 16:15, Ted Roche tedro...@gmail.com wrote:
 My current projects are requiring a lot of switching between workstations,
 and it's possible it slipped between the cracks of my primary workstation
 (Linux and Thunderbird) and my others (Linux w/ Gmail, Wince-even with
 Gmail) and/or flagged by one or another of the anti-spam services
 (Donate! Click here! and url shorteners?)

GMail asked me if Ed's message was a scam.  Probably related.

I wasn't sure if I should click yes or no :-)

-- 
Paul

___
Post Messages to: ProFox@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/CADwx0++7a-PSKGcxjU5SrcnTMBWk6=P=0ksswsxe6js0eff...@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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread Ed Leafe
On Apr 29, 2014, at 3:11 PM, Paul Hill paulroberth...@gmail.com wrote:

 GMail asked me if Ed's message was a scam.  Probably related.
 
 I wasn't sure if I should click yes or no :-)

Well, in case there are any doubts...  ;-)

I'll be sure to post my ride as soon as I'm done. Here was last year's: 
http://j.mp/1rLkJEK


-- Ed Leafe


___
Post Messages to: ProFox@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/5a4fab00-fdf1-4d4b-a33c-8f1be1bb4...@rackspace.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.


Re: Running a Batch File from VFP

2014-04-29 Thread kamcgin...@gmail.com

I didn't see this entire thread so excuse if this has been suggested:

Put 'Echo ON' at the top
Then put a PAUSE command after every statement in your batch file. You 
should be able to 'walk' thru it.



On 4/29/2014 11:46 AM, Gene Wirchenko wrote:

At 07:36 2014-04-29, Man-wai Chang chan...@gmail.com wrote:

Generating the whole batch file is the simplest solution, and possibly
the more secured one!

What if the batch file you wanna call was modified by someone, 
somewhere? :)


 You mean the batch file in the same directory as the VFP system?


Injecting environment variables into a command sub-shell is a
dangerous idea anyway


 What dangerous???

 I am setting parameters for a program being called.

[snip]

Sincerely,

Gene Wirchenko



[excessive quoting removed by server]

___
Post Messages to: ProFox@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/53601c5c.5010...@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.


VFP6: Form Woes

2014-04-29 Thread Desmond Lloyd
Good Evening...

This is probably a throwback for everyone,  and am sure someone can make a
suggestion...


Have this old application with a big do while ..t routine,  define some
windows,  write says and gets (yes that old)  read with some defined
buttons.  All is good...

Created a form which I call from one of the buttons,  with the following
code.

do form myform1  (myform1 is modeless and in screen)
read events

there is a clear events in the release of myform1

All is good,  form comes up click on the quit button and it returns to the
original display...


The problem is that  I created another form,  myform2  This is called from
a button on myform1
myform2  top form,  modal
myform2 is displayed just fine,  but when I exit the form it is returning
to the read events in the main program.

Created a test form with one button and it works just fine,  returning to
myform1.  Have checked the methods in myform2 and there are no clear
events,  if I step through the code in myform1 run myform2 button which is;

do myform2
set step on
thisform.refresh()

it get to the refresh and I am dumped back to the read events...

I hope that makes sense,
Suggestions?
TIa,
Desmond


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

___
Post Messages to: ProFox@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/CAAJXvaOmAJu830EwMLG7NBxzDdt4=3x6xefhewzjejbarzc...@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.


Re: VFP6: Form Woes

2014-04-29 Thread Fred Taylor
There is only one level of READ EVENTS.  If there's already a READ EVENTS
in progress, a 2nd READ EVENTS is ignored, so your CLEAR EVENTS is going
back to your first one.

Fred


On Tue, Apr 29, 2014 at 4:29 PM, Desmond Lloyd desmond.ll...@gmail.comwrote:

 Good Evening...

 This is probably a throwback for everyone,  and am sure someone can make a
 suggestion...


 Have this old application with a big do while ..t routine,  define some
 windows,  write says and gets (yes that old)  read with some defined
 buttons.  All is good...

 Created a form which I call from one of the buttons,  with the following
 code.

 do form myform1  (myform1 is modeless and in screen)
 read events

 there is a clear events in the release of myform1

 All is good,  form comes up click on the quit button and it returns to the
 original display...


 The problem is that  I created another form,  myform2  This is called from
 a button on myform1
 myform2  top form,  modal
 myform2 is displayed just fine,  but when I exit the form it is returning
 to the read events in the main program.

 Created a test form with one button and it works just fine,  returning to
 myform1.  Have checked the methods in myform2 and there are no clear
 events,  if I step through the code in myform1 run myform2 button which is;

 do myform2
 set step on
 thisform.refresh()

 it get to the refresh and I am dumped back to the read events...

 I hope that makes sense,
 Suggestions?
 TIa,
 Desmond


 --- StripMime Report -- processed MIME parts ---
 multipart/alternative
   text/plain (text body -- kept)
   text/html
 ---

[excessive quoting removed by server]

___
Post Messages to: ProFox@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/cajcbksovju2gfqcen0a9d-uk3bw05-k_jnv2ehqnzm-gtxo...@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.


RE: VFP6: Form Woes

2014-04-29 Thread jerry foote
Should not the first form be modal?
Jerry

-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Fred Taylor
Sent: Tuesday, April 29, 2014 6:33 PM
To: ProFox Email List
Subject: Re: VFP6: Form Woes

There is only one level of READ EVENTS.  If there's already a READ EVENTS
in progress, a 2nd READ EVENTS is ignored, so your CLEAR EVENTS is going
back to your first one.

Fred


On Tue, Apr 29, 2014 at 4:29 PM, Desmond Lloyd
desmond.ll...@gmail.comwrote:

 Good Evening...

 This is probably a throwback for everyone,  and am sure someone can make a
 suggestion...


 Have this old application with a big do while ..t routine,  define some
 windows,  write says and gets (yes that old)  read with some defined
 buttons.  All is good...

 Created a form which I call from one of the buttons,  with the following
 code.

 do form myform1  (myform1 is modeless and in screen)
 read events

 there is a clear events in the release of myform1

 All is good,  form comes up click on the quit button and it returns to the
 original display...


 The problem is that  I created another form,  myform2  This is called from
 a button on myform1
 myform2  top form,  modal
 myform2 is displayed just fine,  but when I exit the form it is returning
 to the read events in the main program.

 Created a test form with one button and it works just fine,  returning to
 myform1.  Have checked the methods in myform2 and there are no clear
 events,  if I step through the code in myform1 run myform2 button which
is;

 do myform2
 set step on
 thisform.refresh()

 it get to the refresh and I am dumped back to the read events...

 I hope that makes sense,
 Suggestions?
 TIa,
 Desmond


 --- StripMime Report -- processed MIME parts ---
 multipart/alternative
   text/plain (text body -- kept)
   text/html
 ---

[excessive quoting removed by server]

___
Post Messages to: ProFox@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/F1D4DE23980B41E7887A8CB37AD89EC5@jerryfootePC
** 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.


Re: [ADMIN] Mailing List Issues, was: Another Donation Request

2014-04-29 Thread GaryT

On 30/04/14 01:15, Ted Roche wrote:

[BIG SNIP]


I was able to find the place to donate.



Ted, and others...

Did you have to fill in all your personal details?
Name, address, etc

I was presented with a page requiring lots of details, and I elected to 
provide only a public name.  Selected Paypal and the attempt failed.


Soon with red paint everywhere it became apparent that they wanted all 
my personal details as well.  I refused to play that game.


As far as I'm concerned if they want to collect names etc for their 
database they should say that up front. I'm giving them money from a 
source that could only be considered reputable and they have absolutely 
no security reasons to ask for all my personal details. It's hard enough 
to retain a little bit of privacy these days without falling for things 
like that.


Sorry, Ed.  I've donated twice before but if you want me again, please 
tell me where I can send something privately.


GaryT



___
Post Messages to: ProFox@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/5360762a.9000...@taig.net
** 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.