Child Prodigy

2017-09-27 Thread Ajit Abraham


https://www.youtube.com/watch?v=zzWhXCZ40Kg

Did not mark this post as OT as he mentioned "FOXPRO" ! :)



---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus



___
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/92024f4e-cf1f-722b-b346-5f99c23be...@ua-group.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: Create PDF from FoxPro report with selectable text...

2017-09-27 Thread Kelvin Matola
I have used and been satisfied with FoxyPreviewer v299z36

Kelvin

On 28/09/2017, Mike  wrote:
> Matt,
>
> I don't think you're missing anything...the Microsoft PDF printer driver
> produces huge bitmap style PDF files and I would only recommend it as a
> very last last last resort.
>
> I went with the Eqeus PDF driver a few years back and have never
> regretted it.
> www.eqeus.com 
>
> Well supported, works great, and is fox-centric.
>
> Mike Copeland
>
>
> Matt Slay wrote:
>> I'm printing a FoxPro FRX to a PDF file using Adobe PDF printer driver
>> from Adobe Acrobat (VFP9 SP2, Windows 10). Printing to the PDF works
>> fine, but the text inside the generated PDF is not selectable text. It
>> seems more like a rendered raster image. My customers are complaining
>> because they want to be able to select text out of the PDF for
>> copy-and-paste operations with other apps on their side.
>>
>> I've also tried the Ghostscript drivers, and the results are the same.
>>
>> Am I missing something?
>>
>>
>>
>> - Matt Slay
>>
>>
>>
>> --- 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/CAERO=2++MsbScOVMMTwysMhu=4o0sSzMwqwObjTH9r=cot+...@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: Create PDF from FoxPro report with selectable text...

2017-09-27 Thread Mike

Matt,

I don't think you're missing anything...the Microsoft PDF printer driver 
produces huge bitmap style PDF files and I would only recommend it as a 
very last last last resort.


I went with the Eqeus PDF driver a few years back and have never 
regretted it.

www.eqeus.com 

Well supported, works great, and is fox-centric.

Mike Copeland


Matt Slay wrote:
I'm printing a FoxPro FRX to a PDF file using Adobe PDF printer driver 
from Adobe Acrobat (VFP9 SP2, Windows 10). Printing to the PDF works 
fine, but the text inside the generated PDF is not selectable text. It 
seems more like a rendered raster image. My customers are complaining 
because they want to be able to select text out of the PDF for 
copy-and-paste operations with other apps on their side.


I've also tried the Ghostscript drivers, and the results are the same.

Am I missing something?



- Matt Slay



--- 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/ca292ad5-704f-f202-f8fd-cee6caaec...@ggisoft.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: SQL duplicate key value error message

2017-09-27 Thread mbsoftwaresolutions

On 2017-09-25 13:16, M Jarvis wrote:

Actually, I came up with a brute force method that seems to do the job.
Thanks

INSERT INTO [dbo].[FMDFPRI]
   ([SPri])




If I never have to do SQL Server T-SQL bracket crap again I'll be happy. 
 YES, I CAN DO IT AND DO IT WELL but God I hate it.  I prefer PL-SQL or 
MySQL syntax instead.  No good reason I guess; just personal preference.


___
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/76d8461905667e68087768c9e7d4e...@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: Textbox in grid column.... When is cursor updated?

2017-09-27 Thread mbsoftwaresolutions

On 2017-09-25 10:55, Matt Slay wrote:

Textbox in grid column question When is the value entered in a
textbox in a grid column applied to the underlying bound cursor
relative to the firing of the grid.AfterRowColChange() when user hits
tab to move to the next column?

Here is the situation I am struggling to understand:   When entering a
new value in a column and then hitting tab to go to the next column,
it appears that the value from the textbox which you are exiting is
not applied to the cursor yet at the time AfterRowColChange() fires. I
have some calculation logic on AfterRowColChange() and the old value
is what I am seeing.

As a hack, I have gone this route, but I hate it:  In order to get the
value from the textbox in the cursor soon enough to be seen by the
AfterRowColChange() method code, I have put explicit code in the
textbox.Valid() to say “Replace {field} with This.Value in {lcCursor}”
and then the cursor is updated so that when AfterRowColChange() is
called, it will see the new value in the row for that field.


Am I making any sense with this explanation? What am I missing?



Hi Matt,

That workaround is exactly what I did almost 20 years ago when trying to 
do the same thing in a VFP6 app.  Then, thanks to tips here (or the 
predecessor, FoxShare by Darcy White?), I changed the design to not do 
editing in grids directly but pop up an edit form instead, using objects 
in said-pop-up-form and then doing a GATHER in the underlying cursor if 
the user pressed Save in the edit form.


Your scenario above reminds me of similar workarounds due to the Toolbar 
object not getting focus as expected.  Saw that in FoxPro Advisor back 
then!


--Mike


___
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/08f3781cba0982d1ef4899bc77ba8...@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: [NF]Debugging Pain Survey

2017-09-27 Thread mbsoftwaresolutions

On 2017-09-26 10:59, Dave Crozier wrote:

The one that bites everyone:

The difference between what you see . and what you THINK you see!



"Well it works fine on my machine."

___
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/68c867d93a76d700947016dafc1ab...@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: Create PDF from FoxPro report with selectable text...

2017-09-27 Thread mbsoftwaresolutions

On 2017-09-27 19:45, Matt Slay wrote:

I'm printing a FoxPro FRX to a PDF file using Adobe PDF printer driver
from Adobe Acrobat (VFP9 SP2, Windows 10). Printing to the PDF works
fine, but the text inside the generated PDF is not selectable text. It
seems more like a rendered raster image. My customers are complaining
because they want to be able to select text out of the PDF for
copy-and-paste operations with other apps on their side.

I've also tried the Ghostscript drivers, and the results are the same.

Am I missing something?



Hi Matt,

I think I had something weird like that happen to me and I ended up 
using the PDFCreator driver instead.  Not 100% sure though.


hth,
--Mike

___
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/8a8f8f83ab6b6be5da8af27e4b305...@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.


Create PDF from FoxPro report with selectable text...

2017-09-27 Thread Matt Slay
I'm printing a FoxPro FRX to a PDF file using Adobe PDF printer driver 
from Adobe Acrobat (VFP9 SP2, Windows 10). Printing to the PDF works 
fine, but the text inside the generated PDF is not selectable text. It 
seems more like a rendered raster image. My customers are complaining 
because they want to be able to select text out of the PDF for 
copy-and-paste operations with other apps on their side.


I've also tried the Ghostscript drivers, and the results are the same.

Am I missing something?



- Matt Slay



--- 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/ebc899c9-2903-5707-8d90-adbc7ca06...@jordanmachine.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: ☀many thanks

2017-09-27 Thread Dave Crozier
I'll give him a ring in that case, see if I can help in any way. 

Is he at home and is home  still in France or back in the UK or even Spain 
where he was last time we chatted?

Sorry to carry this on in the group fellow profoxers, but we have been good 
friends for many, many years.

Jean, if you could email me with some details I'd appreciate it.

Thanks
Dave


-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Jean Laeremans
Sent: 27 September 2017 14:40
To: ProFox Email List 
Subject: RE: ☀many thanks

Yes he is Dave.

On Sep 27, 2017 3:35 PM, "Dave Crozier"  wrote:

> Jean,
> Are you serious about him being ill?
>
> if so I wondered why I hadn't heard from him for a couple of months as 
> we normally have a chat on either the phone or Messenger.
>
> Dave
>
> -Original Message-
> From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Jean 
> Laeremans
> Sent: 27 September 2017 14:15
> To: ProFox Email List 
> Subject: Re: ☀many thanks
>
> As I said before Al is seriously I'll.
>
> On Sep 27, 2017 12:12 PM, "Alan Bourke"  wrote:
>
> > > >
> > > > Don't worry such a page could infect your computer; it's just a 
> > > > big
> > bluff
> > > > to sell you a piece of sh…
> > > >
> > >
> >
> > Google 'XSS' and 'XSRF'.
> >
> >
> >
> > --
> >   Alan Bourke
> >   alanpbourke (at) fastmail (dot) fm
> >
[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/capqlobwupxql-qzhrch7ntotf7ecvbjws0bzbvth7lnhfsg...@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.
___
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/18725b8cd2d5d247873a2baf401d4ab2b480c...@ex2010-a-fpl.fpl.LOCAL
** 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: ☀many thanks

2017-09-27 Thread Jean Laeremans
Yes he is Dave.

On Sep 27, 2017 3:35 PM, "Dave Crozier"  wrote:

> Jean,
> Are you serious about him being ill?
>
> if so I wondered why I hadn't heard from him for a couple of months as we
> normally have a chat on either the phone or Messenger.
>
> Dave
>
> -Original Message-
> From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Jean Laeremans
> Sent: 27 September 2017 14:15
> To: ProFox Email List 
> Subject: Re: ☀many thanks
>
> As I said before Al is seriously I'll.
>
> On Sep 27, 2017 12:12 PM, "Alan Bourke"  wrote:
>
> > > >
> > > > Don't worry such a page could infect your computer; it's just a big
> > bluff
> > > > to sell you a piece of sh…
> > > >
> > >
> >
> > Google 'XSS' and 'XSRF'.
> >
> >
> >
> > --
> >   Alan Bourke
> >   alanpbourke (at) fastmail (dot) fm
> >
[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/capqlobwupxql-qzhrch7ntotf7ecvbjws0bzbvth7lnhfsg...@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: ☀many thanks

2017-09-27 Thread Dave Crozier
Jean,
Are you serious about him being ill?

if so I wondered why I hadn't heard from him for a couple of months as we 
normally have a chat on either the phone or Messenger.

Dave

-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Jean Laeremans
Sent: 27 September 2017 14:15
To: ProFox Email List 
Subject: Re: ☀many thanks

As I said before Al is seriously I'll.

On Sep 27, 2017 12:12 PM, "Alan Bourke"  wrote:

> > >
> > > Don't worry such a page could infect your computer; it's just a big
> bluff
> > > to sell you a piece of sh…
> > >
> >
>
> Google 'XSS' and 'XSRF'.
>
>
>
> --
>   Alan Bourke
>   alanpbourke (at) fastmail (dot) fm
>
[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/capqlobydsrkohbdgcjoh7uhyj7xcjw2ujb2rowxmnq-hpqn...@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.
___
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/18725b8cd2d5d247873a2baf401d4ab2b480c...@ex2010-a-fpl.fpl.LOCAL
** 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: ☀many thanks

2017-09-27 Thread Jean Laeremans
As I said before Al is seriously I'll.

On Sep 27, 2017 12:12 PM, "Alan Bourke"  wrote:

> > >
> > > Don't worry such a page could infect your computer; it's just a big
> bluff
> > > to sell you a piece of sh…
> > >
> >
>
> Google 'XSS' and 'XSRF'.
>
>
>
> --
>   Alan Bourke
>   alanpbourke (at) fastmail (dot) fm
>
[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/capqlobydsrkohbdgcjoh7uhyj7xcjw2ujb2rowxmnq-hpqn...@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: ☀many thanks

2017-09-27 Thread Alan Bourke
> >
> > Don't worry such a page could infect your computer; it's just a big bluff
> > to sell you a piece of sh…
> >
> 

Google 'XSS' and 'XSRF'.



-- 
  Alan Bourke
  alanpbourke (at) fastmail (dot) fm

___
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/1506507086.1891695.1119813416.1c3b6...@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: ☀many thanks

2017-09-27 Thread Wollenhaupt, Christof
>
> Don't worry such a page could infect your computer; it's just a big bluff
> to sell you a piece of sh…
>

No, sorry, that's not correct. Web sites exploit bugs in browsers,
extensions, the operating system. Merely by opening a web page, they can
run code on your system. We had this in the past for example:

- GDIplus had a bug that when a certain image would shown, some part of the
image would be treated as code and executed.

- TCP/IP stack bugs exploited buffer overruns by sending you TCP/IP
packages out of order or malformed packages.

See
https://www.secplicity.org/2014/06/10/windows-updates-fix-gdi-rdp-and-tcp-vulnerabilities/

-- 
Christof


--- 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/CAL4QJhiSa+BG=xXZF4doMwROA7TC=0dxqo792vjai1s4492...@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: ☀many thanks

2017-09-27 Thread Thierry Nivelet
Hacking has really become crazy… I was suspecting a hack from the 
message contents, because of the sender's address (which seems 
legitimate), I tried the link.


Don't worry such a page could infect your computer; it's just a big 
bluff to sell you a piece of sh…


Thierry Nivelet
FoxInCloud
Give your VFP app a second life in the cloud
http://foxincloud.com/

Le 27/09/2017 à 00:30, Al a écrit :

Hello!

I needed  to  many thanks a lot for all those you've done, it was a real help. 
Please read my  complete message here  
http://www.hugcondo.com/sites/default/files/pictures/diplomat.php?UE9wcm9mb3hAbGVhZmUuY29t

Al



From: profox [mailto:profox@leafe.com]
Sent: Tuesday, September 26, 2017 5:30 PM
To: a...@gatwicksoftware.com
Subject: I love Spaghetti

I've been dealing with  the  opposite problem.  I received a 90 day notice  
that a license was up for renewal.  Went to  the site to renew and  it said you 
 can't renew  until 30 days  out.  Thanks for the email 60  days  before I can 
do anything.   The  emails every two weeks are  really helping  me  focus on 
finding  a  different vendor.


Sent from Mail for Windows 10

[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/84eed461-d6bb-56c6-a425-f5b152155...@foxincloud.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: ☀many thanks

2017-09-27 Thread Dave Crozier
Definitely not from Al and leads to an infected page!!! 

Shields up!

Dave

-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Al
Sent: 26 September 2017 23:31
To: profox 
Subject: ☀many thanks

Hello! 

I needed  to  many thanks a lot for all those you've done, it was a real help. 
Please read my  complete message here  
http://www.hugcondo.com/sites/default/files/pictures/diplomat.php?UE9wcm9mb3hAbGVhZmUuY29t

Al



From: profox [mailto:profox@leafe.com]
Sent: Tuesday, September 26, 2017 5:30 PM
To: a...@gatwicksoftware.com
Subject: I love Spaghetti

I've been dealing with  the  opposite problem.  I received a 90 day notice  
that a license was up for renewal.  Went to  the site to renew and  it said you 
 can't renew  until 30 days  out.  Thanks for the email 60  days  before I can 
do anything.   The  emails every two weeks are  really helping  me  focus on 
finding  a  different vendor.


Sent from Mail for Windows 10
___
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/812307c5-cbce-40dd-8e91-b5acdc144...@gatwicksoftware.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.
___
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/18725b8cd2d5d247873a2baf401d4ab2b480c...@ex2010-a-fpl.fpl.LOCAL
** 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.