Re: how do I subscribe

2006-07-21 Thread Michael Hawksworth

Bah Humbug.

--
Michael Hawksworth
Visual Fox Solutions

[EMAIL PROTECTED]
www.foxpro.co.uk





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] adsense

2006-07-21 Thread Paul Hill

On 7/20/06, Derek Kalweit [EMAIL PROTECTED] wrote:

 If you're not already doing it, you may want to take a
 look at adding google adsense to your site.  You won't
 make a lot of money, but it adds up, and the more
 traffic you get, the more you get.  It may pay for
 your hosting, it may pay for dinner, but it's a snap
 to add.

 Right Wing Stuff at http://www.cafepress.com/rightwingmike
 Horse Racing Photos at http://www.HorseRacingPix.com

shameless plug
Indeed-- and if you're making money with your website, you may want to
monitor it with a professional network/resource monitor:

http://www.overseer-network-monitor.com/

At least the free version(limited to 2 resources)...

/shameless plug


Firefox can't find the server at www.overseer-network-monitor.com

I think I'll stick with Analog :-)

http://www.analog.cx/

--
Paul


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: SET PRINTER TO NAME

2006-07-21 Thread Peter Cushing

Dave Crozier wrote:

I must admit though that I've always shyed (is that the correct spelling)?)
  

Shied

http://www.chambersharrap.co.uk/chambers/chref/chref.py/main?query=shiedtitle=21stsourceid=Mozilla-search


Peter



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Changing Primary Key Column

2006-07-21 Thread Andy Davies
--create table custx (name varchar(40), uniquref int)
alter table custx
alter column uniquref int not null
GO
alter table custx
 ADD CONSTRAINT [cust_pk]
 primary key clustered (uniquref)

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: xmlhttp VFP

2006-07-21 Thread Andy Davies
I said:
 then repeat but with:
 ?loXmlHttp.open(POST,lcURL,.F.,your_real_id,your_pw)

I should have added:
...
?loXmlHttp.send(your_[xml]_file)

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: SET PRINTER TO NAME

2006-07-21 Thread Peter Cushing

Fletcher Johnson wrote:

Dave,

I have a form where I have one button that says setup printer which calls
Sys(1037).  This does work to set the desired printer.  But if the user
selects duplex (double sided) printing, the printer ignores it.  In this
case, the program has 4 separate calls to report form  so that we can
generate very differently formatted portions.

When I add prompt to the report, it doesn't remember the duplex mode
either (although it will then print in duplex mode).  
  
  If I set the printer as the windows default printer and then set duplex on

(again as the default), it still ignores the setting.

Any idea how I get ask the user once to select a printer and then have those
settings preserved for each report form call after that?  The prompt option
currently works, but they get it four times and each time, they have to
specifically set it to use duplex printing.
  

Hi Fletcher,

Our app has to print purchase orders which have terms and conditions on 
the back, so we need to print duplex.  All printing and emails are 
handled through a seperate app on another machine that processes them 
from a queue.  When someone wants to print a purchase order they just 
pick a printer from the list presented to them.  If they print to one 
our canon printers called CLC3200 what happens is that I have set up a 
second printer CLC3200-2 which prints to exactly the same place but is 
defined as duplex.  E.g.


cPrinter = CLC3200

set printer to name (cPrinter)  normal printing


cPrinter = CLC3200-2


set printer to name (cPrinter)  duplex printing


I looked at doing this through the windows API but found it too 
complicated and in the mean time I got this working, and has been going 
a couple of years now with no problems.  Our orders can have a second 
sheet and can also be printed in 3 colours, so there can be 6 report 
calls, which would be a pain to set each one.


If you need any more information please let me know.

Peter




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Andy Davies
Malcolm Greene said VFP webservices are not supported on
Windows 2003 due to Microsoft dropping support for their SOAP DLL's

I never got SOAP to work, but I hadn't realised it had been dropped (for
vfp?) -
  do you have a link about this?
  how *are* web services supported in Fox now?

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Andy Davies
I never managed it - I think Ed did (for a while?) but following the thread
at:
http://www.universalthread.com/wconnect/wc.dll?2,15,1133486
it all seems to be fraught with problems (for everyone excepting Rick
Strahl of course bg)

otoh as I and others have said before; with a rich client xmlhttp works out
of the box.

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


including a https link in a form

2006-07-21 Thread Rick Quilhot
From the VFUG.Org List Server:



I'm trying to create a link to a https site inside a form.

However the hyperlink class only recognizes http not https.

 

Any help would welcomed

 

 

Rick Quilhot

Gallant Transport, Inc

877-Gallant

mailto:[EMAIL PROTECTED]



 



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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


Text Box Special Effect 3d

2006-07-21 Thread Andrew
The special effect 3D property for a text box does not seem to work in
vfp 9.0. Does anyone have a solution?

 

Andrew Taylor

 



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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Not just a number, it's a human being.

2006-07-21 Thread Helio W.

So why not bomb and invade Saudi Arabia, then?


On 7/20/06, Michael Madigan [EMAIL PROTECTED] wrote:


No, I've never said, ever, ever, never, said that Iraq
was involved in 911.  Stop lying.

I said Iraq was supporting Hammas and had links to Al
Qaeda.  They were giving 25,000 to the family of each
Hammas suicide bomber.   I also said they were
stockpiling WMD which they could give to a terrorist.

--- Helio W. [EMAIL PROTECTED] wrote:

 And you conveniently believe that Iraq was
 involved in the 911.

 Hey, wait... wasn't WMDs the reason of the invasion?

 On 7/20/06, Michael Madigan [EMAIL PROTECTED]
 wrote:
 
  His point is that we shouldn't be there, but he
  conveniently leaves out 911.


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


 ___
 Post Messages to: ProFox@leafe.com
 Subscription Maintenance:
 http://leafe.com/mailman/listinfo/profox
 OT-free version of this list:
 http://leafe.com/mailman/listinfo/profoxtech
 ** 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.



Right Wing Stuff at http://www.cafepress.com/rightwingmike
Horse Racing Photos at http://www.HorseRacingPix.com



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Inno Setup question

2006-07-21 Thread Sytze de Boer

Hi foxers
Can some of you give opinion/advice please

I have a free standing table, and a form with a 25 page pageframe
Altogether there are some 100 text boxes and/or check boxes etc.

As the client scrolls throught the table, depending on a specific flag, I
need to either make the ENTIRE form read-only, or not read only.

Is there a way to do this with (say) ONE command, or do I have to identify
each and every text box, check box.
e.g., if okay, thisform.text1.readonly=.f.


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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


[NF] Day of Week from Command Prompt

2006-07-21 Thread Chris Davis
Morning,

 

Does anyone know how to get the name of the day of the week in a batch file
on XP, 2003 ???

 

Cheers

 

Chris.



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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


drop foreign key tag ...

2006-07-21 Thread Lew
   I'm looking for the sql equivalent to drop tag ... for contained and/or 
free tables. alter table ... drop foreign key tag ... seems to work, but the 
syntax seems to imply that all tags which don't contain primary or candidate 
keys are 'foreign' whereas the tags I want to remove are just garden variety 
indicies used at various stages of processing. They aren't foreign in the 
sense that they establish relations to other tables. Still seems to work, 
though.

   Anything more I need to think about?

-Lew 




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Ed Leafe

On Jul 21, 2006, at 5:45 AM, Andy Davies wrote:


I never managed it - I think Ed did (for a while?)


	Of course, I wrote the service in Python and deployed it to a Linux  
server.  ;-)


-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: drop foreign key tag ...

2006-07-21 Thread Ed Leafe

On Jul 21, 2006, at 7:47 AM, Lew wrote:

I'm looking for the sql equivalent to drop tag ... for contained  
and/or free tables. alter table ... drop foreign key tag ... seems  
to work


	VFP SQL doesn't support the creation/deletion of ordinary tags. Just  
use INDEX ON and DELETE TAG as usual.


-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: VFP Keyword Jeopardy (36)

2006-07-21 Thread Ted Roche

On 7/19/06, Bill Anderson [EMAIL PROTECTED] wrote:



The answer...

SET HELP

Can anyone explain what this does? Chris?



As Christof pointed out, this feature was added with VP7, to support
the integrated COLLECTION  of HTML Help files that were available in
the Visual Studio IDE. Folks were surprised when they called up help
in VFP and got help for VFP, VB, VC and more, all in one interface. An
FAQ at that point was how to fix it (Tools, Options let you specify
the VFP Help file).

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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] AJAX getting a big push real soon

2006-07-21 Thread Ted Roche

Wow. Once in a while, you actually find something! YUI looks like an
interesting techology. I've been working on a couple of development
projects and we've been waiting to see a couple of good frameworks to
evaluate. YUI is on the list. Thanks!

On 7/20/06, Stephen Russell [EMAIL PROTECTED] wrote:

The Ajaxifiation Of Yahoo
http://www.devwebpro.com/devwebpro-39-20060720TheAjaxifiationofYahoo.ht
ml


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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Stephen the Cook
Bill Arnold  wrote:
 
 The VFP9 doc is pretty clear, so I think it's worth a try unless
 there's a better suggestion (then do it in .NET, of course g). 
 
 Note the doc says: For .exe and .dll file servers, Visual FoxPro
 supports only configuration files that are bound inside the server.

Bill the thread is to Create a WS.  Seems that VFP  Server2003 don't work
well together.  

Doing it in .NET is pretty simple, and the sig of the requestor says .NET
developer.  Go figure why I said to do it there.  

Stephen Russell
DBA / Operations Developer

Memphis TN 38115
901.246-0159

http://spaces.msn.com/members/srussell/

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.3/394 - Release Date: 7/20/2006
 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Not just a number, it's a human being.

2006-07-21 Thread Stephen the Cook
Helio W.  wrote:
 So why not bomb and invade Saudi Arabia, then?

Duh.  That’s were the oil friendships lie.  Been that way for 3 Bush
generations, and if the twins play the game properly it could continue to a
fourth.

Stephen Russell
DBA / Operations Developer

Memphis TN 38115
901.246-0159

http://spaces.msn.com/members/srussell/

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.3/394 - Release Date: 7/20/2006
 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Ted Roche

On 7/20/06, Mark Stanton [EMAIL PROTECTED] wrote:


Yeah, I've spent lots of years doing it too.  Which is why I'm surprised I
haven't built anything to automate the process yet.



An associate (and heavy-duty consultant for Accenture) like to quote
There are 23 problems in computer science, and we keep solving them
over, and over and over.


For example, ZenCart accepts logins, and phpBB does too.  And there's what
looks like half a process in ZenCart to catch logins from phpBB data tables
and import the information.  I've not looked at it in detail yet.



I think there is a Fallacy of Generalization here: all database work
involves People, Places, Things and Events. If we can just create the
perfect model of these four, then we will have solved all computer
problems.


Initial import is relatively easy.  Relative to keeping both datasets
in synch.  Now any particular transfer isn't too terribly hard.  But what
I want is a generalised updating system that has templates  rules for
each end of an updating process and for it to chunk away in the background
keeping the data in synch.



And how do you handle conflicts? Failures to update? Connectivity
errors? At the high end, MQ Series and MSMQ queue changes from source
to target, retry after failures, report conflicts, etc.

MS Data Transformation Services provides a programmatic interface to
reading, transforming and posting data, with lots of hooks for you to
write manipulations and reporting along the way.


That's why the question was rather general.  Because I'm trying to generalise
the problem and come up with a way to produce and automate answers to it.



And I'd respectfully suggest a generaized solution is difficult,
complex and expensive. There are lots of cheaper solutions to specific
cases, and moderatly-priced solutions to others. As I've said,
master-slave synchronization (really more of roll-up into read-only
warehouse) can be accomplished with floppy disks and postal mailers.


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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: drop foreign key tag ...

2006-07-21 Thread Lew Schwartz
... But it does, at least as far as the dropping of tags is concerned.
My question is are there limitations or gotchas? 
This code run fine:

CREATE TABLE tagtest free;
(name c(20), date d, amount n(10,2))

INSERT INTO tagtest VALUES (bob, DATE(), 75)  
INSERT INTO tagtest VALUES (rob, DATE()-20, 43)
INSERT INTO tagtest VALUES (sam, DATE()+7, 95)
INSERT INTO tagtest VALUES (rachael, DATE()-300, -7)

INDEX on name TAG names
INDEX on date TAG dates


ALTER table tagtest;
drop foreign KEY TAG names


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Ed Leafe
Sent: Friday, July 21, 2006 7:55 AM
To: [EMAIL PROTECTED]
Subject: Re: drop foreign key tag ...

On Jul 21, 2006, at 7:47 AM, Lew wrote:

 I'm looking for the sql equivalent to drop tag ... for contained 
 and/or free tables. alter table ... drop foreign key tag ... seems to 
 work

VFP SQL doesn't support the creation/deletion of ordinary tags.
Just use INDEX ON and DELETE TAG as usual.

-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Inno Setup question

2006-07-21 Thread Jim Winter
 I have a free standing table, and a form with a 25 page pageframe
 Altogether there are some 100 text boxes and/or check boxes etc.
 
 As the client scrolls throught the table, depending on a specific flag, I
 need to either make the ENTIRE form read-only, or not read only.
 
 Is there a way to do this with (say) ONE command, or do I have to identify
 each and every text box, check box.
 e.g., if okay, thisform.text1.readonly=.f.
 
In your base controls, you could put something like this in the Refresh()
method.

This.ReadOnly = ThisForm.lReadOnly

Assuming ThisForm.lReadOnly was your flag.  Then just call the forms
Refresh().

Regards,
Jim



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Another right-wing hypocrite

2006-07-21 Thread Ed Leafe
	Peter Coors, chairman of the Coors Brewing company, Republican  
senate candidate and major supporter of right-wing moral causes,  
has been found guilty of driving under the influence of alcohol.


http://news.bbc.co.uk/2/hi/americas/5184214.stm

( -or- http://tinyurl.com/m66y2 )

-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: drop foreign key tag ...

2006-07-21 Thread Ed Leafe

On Jul 21, 2006, at 9:05 AM, Lew Schwartz wrote:


... But it does, at least as far as the dropping of tags is concerned.


	That's a side-effect of what looks like some sloppy programming.  
Most of the VFP SQL commands translate the request behind-the-scenes  
to regular Xbase-style commands. I'm sure that the command you cite  
deletes the tag and removes the FK record in the DBC. If it were  
implemented better, it should throw an error that no such FK exists.


	Real SQL databases have a DROP INDEX command, which VFP doesn't  
implement. Maybe you should pass this on to the VFPx gang.


-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] AJAX getting a big push real soon

2006-07-21 Thread Ed Leafe

On Jul 21, 2006, at 8:07 AM, Ted Roche wrote:


Wow. Once in a while, you actually find something!


File that under the definition for back-handed compliment.  ;-)

-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] AJAX getting a big push real soon

2006-07-21 Thread stephen . russell
 From: Ed Leafe [EMAIL PROTECTED]

 On Jul 21, 2006, at 8:07 AM, Ted Roche wrote:
 
  Wow. Once in a while, you actually find something!
 
   File that under the definition for back-handed compliment.  ;-)

I already patted myself on the back Ed. 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: drop foreign key tag ...

2006-07-21 Thread stephen . russell
 From: Ed Leafe [EMAIL PROTECTED]
 
 On Jul 21, 2006, at 9:05 AM, Lew Schwartz wrote:
 
  ... But it does, at least as far as the dropping of tags is concerned.
 
   That's a side-effect of what looks like some sloppy programming.  
 Most of the VFP SQL commands translate the request behind-the-scenes  
 to regular Xbase-style commands. I'm sure that the command you cite  
 deletes the tag and removes the FK record in the DBC. If it were  
 implemented better, it should throw an error that no such FK exists.
 
   Real SQL databases have a DROP INDEX command, which VFP doesn't  
 implement. Maybe you should pass this on to the VFPx gang.

Funny but his code was alos on a free table and not part of a DBC.  I
have no idea if it matters.  Here is code that determines if the key is
valid and then deletes the PKey.  Keys are constraints.   

USE [ASPState]
GO
/** Object:  Index [PK__ASPStateTempAppl__5BE2A6F2]Script Date:
07/21/2006 08:43:45 **/
IF  EXISTS (SELECT * FROM dbo.sysindexes 
WHERE id = OBJECT_ID(N'[dbo].[ASPStateTempApplications]') 
AND name = N'PK__ASPStateTempAppl__5BE2A6F2')

ALTER TABLE [dbo].[ASPStateTempApplications] DROP CONSTRAINT
[PK__ASPStateTempAppl__5BE2A6F2]



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: drop foreign key tag ...

2006-07-21 Thread Ed Leafe

On Jul 21, 2006, at 9:45 AM, [EMAIL PROTECTED] wrote:


Funny but his code was alos on a free table and not part of a DBC.


	That's just what I meant by it being a sloppy implementation.  
Telling Fox to drop a foreign key on a free table should throw an error.


I have no idea if it matters.  Here is code that determines if the  
key is

valid and then deletes the PKey.  Keys are constraints.

USE [ASPState]
GO
/** Object:  Index [PK__ASPStateTempAppl__5BE2A6F2]Script  
Date:

07/21/2006 08:43:45 **/
IF  EXISTS (SELECT * FROM dbo.sysindexes
WHERE id = OBJECT_ID(N'[dbo].[ASPStateTempApplications]')
AND name = N'PK__ASPStateTempAppl__5BE2A6F2')

ALTER TABLE [dbo].[ASPStateTempApplications] DROP CONSTRAINT
[PK__ASPStateTempAppl__5BE2A6F2]


Wow, that's sure some attractive code. :-P

In MySQL it would be:

ALTER TABLE DROP INDEX Foo
( for ordinary indexes )

ALTER TABLE DROP PRIMARY KEY
( for PKs )

ALTER TABLE DROP FOREIGN KEY Foo
( for FKs )

Calling them in inappropriate situations will raise an error.

-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Inno Setup question

2006-07-21 Thread Dave Crozier
Sytzze,
Assuming you HAVE subclassed your controls ( you always do that don't you?)
then simply modify the base class refresh() methods to look at a global
Object property eg. oGlobal.Enable_Edit which you set as you traverse the
data and set the Enable property of each control accordingly.

Dave Crozier
 The secret to staying young is to live honestly, eat slowly, and to lie
about your age 

 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Sytze de Boer
Sent: 21 July 2006 05:33
To: profox@leafe.com
Subject: Re: Inno Setup question

Hi foxers
Can some of you give opinion/advice please

I have a free standing table, and a form with a 25 page pageframe Altogether
there are some 100 text boxes and/or check boxes etc.

As the client scrolls throught the table, depending on a specific flag, I
need to either make the ENTIRE form read-only, or not read only.

Is there a way to do this with (say) ONE command, or do I have to identify
each and every text box, check box.
e.g., if okay, thisform.text1.readonly=.f.


--- 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://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Bill Arnold

  The VFP9 doc is pretty clear, so I think it's worth a try unless 
  there's a better suggestion (then do it in .NET, of course g).
  
  Note the doc says: For .exe and .dll file servers, Visual FoxPro 
  supports only configuration files that are bound inside the server.
 
 Bill the thread is to Create a WS.  Seems that VFP  
 Server2003 don't work well together.  


We can take seems that as definitive or figure out and either solve or
work around the problems one at a time. I'm not working with WS or would
look closer myself, but I have done VFP DLL's under earlier servers and
the code I used works as advertised. The VFP9 help doesn't distinguish
between how COM servers are launched, so I (perhaps incorrectly) assume
there is no difference.


 Doing it in .NET is pretty simple, and the sig of the 
 requestor says .NET developer.  Go figure why I said to do it there.  


Be that as it may, the question wasn't posed to a .NET group, it was
asked of a VFP group. I'll take that as a hint that a VFP solution is
being sought and that the solution might be helpful to others who are
using VFP. We are interested in getting the most out of, if not
advancing, VFP, are we not?


Bill


 
 Stephen Russell



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Andy Davies
...then we will have solved all computer problems.

anyone remember The Last One?

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


VFP Accessing AS400

2006-07-21 Thread Dave Crozier
Guys,
I have a requirement from one of our suppliers to access their AS400 to
upload delivery document details into an AS400 mainframe.

Currently a VPN is used with an emulator (it looks like it is Tun Plus they
use aor a b*stardised verion of it which an operator simply keys data into
24x80 standard DOS like screen application.

What I want to do to avoid this rekeying is to pipe the information into the
program from our VFP application, thus emulating operator input. Has anyone
out there done this before and if so what approach did they use. I know I
could in effect write a VFP terminal emulator and I have a load of possible
solutions flying around in my head, but wondered if anyone knwe of an
emulator you can interface with from VFP or if there was an all VFP
solution. The link to the AS400 is via a VPN.

Thanks in anticipation.

 
Dave Crozier
 The secret to staying young is to live honestly, eat slowly, and to lie
about your age 

 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.10.3/394 - Release Date: 20/07/2006
 




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Day of Week from Command Prompt

2006-07-21 Thread Bill Arnold


 Does anyone know how to get the name of the day of the week 
 in a batch file on XP, 2003 ???
 
 
Use CDOW to get the day and STRTOFILE to generate/replace the batch
file?


Bill


 
 Chris.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Text Box Special Effect 3d

2006-07-21 Thread ΘΕΜΕΛΙΟ Software

Hi Andrew,

Try Themes =  .F.


-Vassilis

- Original Message - 
From: Andrew [EMAIL PROTECTED]

To: profox@leafe.com
Sent: Thursday, July 20, 2006 9:07 PM
Subject: Text Box Special Effect 3d



The special effect 3D property for a text box does not seem to work in
vfp 9.0. Does anyone have a solution?



Andrew Taylor





--- 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://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: drop foreign key tag ...

2006-07-21 Thread Andy Davies
ALTER table tagtest;
drop foreign KEY TAG names

so it does, well well!

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] adsense

2006-07-21 Thread Derek Kalweit

 shameless plug
 Indeed-- and if you're making money with your website, you may want to
 monitor it with a professional network/resource monitor:

 http://www.overseer-network-monitor.com/

 At least the free version(limited to 2 resources)...

 /shameless plug

Firefox can't find the server at www.overseer-network-monitor.com

I think I'll stick with Analog :-)

http://www.analog.cx/


Different product type entirely. :)

Looks like some of my ISP's DNS servers are flukey. I guess I'll be
switching to use my own-- I just set them up the other day for another
need anyways... Thanks.


--
Derek


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Day of Week from Command Prompt

2006-07-21 Thread Ted Roche

On 7/21/06, Chris Davis [EMAIL PROTECTED] wrote:

Does anyone know how to get the name of the day of the week in a batch file
on XP, 2003 ???


You could write a simple program in the language of your choice to
output it to a file and then read the file into the batch file. VFP
can do this, as can pretty much every other language out there.
Python, for example. Or you could use Windows Scripting Host (WSH) if
that's installed and not disabled on the workstation. Sample code
(looks good in GMail, untested)

# DOW.BAT
start /wait MyVFPProg.exe answer.txt
echo answer.txt

MyVFPProg.prg (compiled to .exe)
lparameters lcFilename
strtofile(CDOW(DATE()), lcFilename)

I don't believe there is any such functionality in the basic Windows
CMD shell batch language, though. I've seen some basic date
manipulations, to do things like name files Backup2006-07-21.bak, but
not day-names.


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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Peter Cushing

Vince Teachout wrote:

SET DELETED ON
Create a table, Names with field fname c(10)

INSERT INTO Names (fname) values(bob)
INSERT INTO Names (fname) values(bob)
INSERT INTO Names (fname) values(bob)
INSERT INTO Names (fname) values(alice)
INSERT INTO Names (fname) values(carol)
INSERT INTO Names (fname) values(ted)
INSERT INTO Names (fname) values(sue)
INSERT INTO Names (fname) values(sue)

BROWSE

INDEX on fname TO crap unique
SET INDEX TO crap
BROWSE

Delete the bob row

BROWSE
* oops! we have NO bob!
That means Ted has alice, carol and sue all to himself, the lucky 
bleeder ;-)



Peter



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Ted Roche

On 7/21/06, Andy Davies [EMAIL PROTECTED] wrote:

...then we will have solved all computer problems.

anyone remember The Last One?



Nope. Google suggests:

http://www.thelastone.org/index.html
http://www.wired.com/news/exec/0,1370,44464,00.html
http://www.tv.com/friends/the-last-one-1/episode/327726/summary.html

I remember when SuperBase came out and promised solutions without
code. There was an Israeli firm in the 80s who did the rounds of the
conferences showing a No Code! gui application builder.

It's hard to build a house without nails or an application without code.

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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Day of Week from Command Prompt

2006-07-21 Thread Chris Davis
It's the Mon,Tue,Wed,Thu etc I'm after

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Rob Anderson
Sent: 21 July 2006 15:50
To: [EMAIL PROTECTED]
Subject: RE: [NF] Day of Week from Command Prompt 

You can get the day (numeric) easily enough :-

echo %date:~6,2%

HTH,
Robbo.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Chris Davis
Sent: 21 July 2006 10:25
To: profox@leafe.com
Subject: [NF] Day of Week from Command Prompt 

Morning,

 

Does anyone know how to get the name of the day of the week in a batch
file
on XP, 2003 ???

 

Cheers

 

Chris.



--- 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://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Inno Setup question

2006-07-21 Thread Andy Davies
Hi,
I do something a bit more complicated - I set the readonly properties of
controls on a form depending on properties set for it's cursor - this in
the form init:

LOCAL i, i0, in, j, aMm[1], cs, lup, oObj, oPage, lcOldErr, lOK
lcOldErr = ON(ERROR)
FOR EACH oPage IN thisform.pFrameBase1.pages
   FOR i = 1 TO AMEMBERS( aMm,oPage,2)
  oObj = EVALUATE('oPage.'+ aMm[i])
  IF UPPER(oObj.BASECLASS) $ 'TEXTBOXCOMBOBOX'
 cs = cursorname.'+oObj.CONTROLSOURCE
 lOK = .T.
 ON ERROR lOK = .F.
 lup = DBGETPROP(cs,FIELD,UPDATABLE)
 on error lcOldErr
 DO case
 CASE lOK AND UPPER(oObj.BASECLASS) = 'TEXTBOX'
oObj.READONLY = !lup
 CASE lOK AND UPPER(oObj.BASECLASS) = 'COMBOBOX'
oObj.ENABLED = lup
 endcase
  ENDIF
   NEXT i
ENDFOR

yet another reason why, despite being attracted to the idea, I haven't used
scatter name or other forms of business object - I'm just too comfortable
with cursors.

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Dave Crozier
Andy,
I bought it on a Sirius II and it was the biggest load of CR*P you could
imagine. Reams and reams of Basic code just to do simple things. Yo
compile a hello world program equivalent used to take ages and ages. However
it sounded really cool as the Sirius had variable speed floppy drives on it!


Dave Crozier
 The secret to staying young is to live honestly, eat slowly, and to lie
about your age 

 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Andy Davies
Sent: 21 July 2006 15:28
To: profox@leafe.com
Subject: Re: Database mapping

...then we will have solved all computer problems.

anyone remember The Last One?

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
If you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Charlie Coleman

...

  The VFP9 doc is pretty clear, so I think it's worth a try unless
  there's a better suggestion (then do it in .NET, of course g).

...

 Bill the thread is to Create a WS.  Seems that VFP 
 Server2003 don't work well together.


Windows 2003 server changes things from Windows 2000 server.

(Side note: Of course things would change. So many vulnerabilities. Gotta 
change things around to make it 'look' like you plugged the holes. And 
changing things also gives 'justification' words for MS-dead-heads to say 
'see ya gotta do it MS's way...').


There was a setting somewhere in IIS which had to be turned 'on' to allow 
certain other file types (apart from asp? or aspx?) to be invoked on a web 
site. That's probably 1 issue. I have a West-Wind Webconnection application 
which I moved from winsrv 2000 to winsrv 2003. WWWC of course, uses a .dll. 
It wouldn't work until I tracked down that stupid setting and changed it.


So, wrong again, VFP seems to work fine on Win 2003 server (once you 
understand what MS changed again).


And, by the way, I have various config files that I use which allow my 
systems to work with the server and other networked servers with no 
problems. Of course, I do NOT use 'standard' MS config files. Maybe that's 
why mine works. ?




 Doing it in .NET is pretty simple, and the sig of the
 requestor says .NET developer.  Go figure why I said to do it there.

Be that as it may, the question wasn't posed to a .NET group, it was
asked of a VFP group. I'll take that as a hint that a VFP solution is
being sought and that the solution might be helpful to others who are
using VFP. We are interested in getting the most out of, if not
advancing, VFP, are we not?


Bill, remember that Steve is an MS-dead-head. He really likes .Net and MS 
SQL Server and likes to bash VFP.


Steve, why are you still on this list again? If just you like posting jokes 
and stuff, why not keep your posts to NF and OT. We all 'get' that you used 
to use VFP, that you're into .Net and MS SQL server now, that you think VFP 
is oh so out of date, that everything we do here is so 'old hat'. IMO, Bill 
is right about this list: we're here to offer solutions in VFP - we are 
here to foster and advance VFP. So, Steve, you're obviously not in 
agreement with that concept so why remain, and post, on the list? I'm 
trying to understand. Every now and then a SQL Server question does arise 
and you provide feedback. But since you don't really use VFP much anymore, 
why keep posting to VFP questions?


-Charlie



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Birthday gift

2006-07-21 Thread Stephen Russell
If you read this without laughing out loud, there is something wrong
with you.
 
I started swimming and working out at the Y and a friend passed this
story to me.  

This is dedicated to everyone who ever attempted to get into a regular
workout routine.
 
For my sixty fifth birthday this year, my wife (the dear) purchased a
week of personal training at the local health club for me. Although I am
Still in great shape since playing on my college football team 45 years
Ago, I decided it would be a good idea to go ahead and give it a try.
 
I called the club and made my reservations with a personal trainer named
Belinda, who identified herself as a 26-year-old aerobics instructor and
model for athletic clothing and swim wear. My wife seemed pleased with
my enthusiasm to get started!
 
The club encouraged me to keep a diary to chart my progress . .
Dear Diary:
 
MONDAY:
 
Started my day at 6:00 a.m.
Tough to get out of bed, but found it was well worth it when I
arrived at the health club to find Belinda waiting for me.
 
She is something of a Greek goddess - with blond hair, dancing eyes and
Dazzling white smile. Woo Hoo!!
Belinda gave me a tour and showed me the machines.
 
She took my pulse after five minutes on the treadmill.
She was alarmed that my pulse was so fast, but I attribute it to
standing next to her in her Lycra aerobic outfit.
 
I enjoyed watching the skillful way in which she conducted her
aerobics Class after my workout today. Very inspiring!
 
Belinda was encouraging as I did my sit-ups, although my gut was already
aching from holding it in the whole time she was around.
This is going to be a FANTASTIC week!!
 
TUESDAY:
 
I drank a whole pot of coffee, but I finally made it out the door.
 
Belinda made me lie on my back and push a heavy iron bar into the air
while she put weights on it!
 
My legs were a little wobbly on the treadmill, but I made the full
tile. Belinda's rewarding smile made it all worthwhile.
 
I feel GREAT!! It's a whole new life for me.
 
WEDNESDAY:
The only way I can brush my teeth is by laying on the toothbrush on the
counter and moving my mouth back and forth over it.
I believe I have a hernia in both pectorals. Driving was OK as long
as I didn't try to steer or stop. I parked on top of a GEO in the club
parking lot.
 
Belinda was impatient with me, insisting that my screams bothered other
club members. Her voice is a little too perky for early in the morning
and when she scolds, she gets this nasally whine that is VERY annoying.
 
My chest hurt when I got on the treadmill, so Belinda put me on the
Stair monster.
 
Why the hell would anyone invent a machine to simulate an activity
rendered obsolete by elevators?
 
Belinda told me it would help me get in shape and enjoy life.
She said some other shit too.
 
THURSDAY:
 
Belinda was waiting for me with her vampire-like teeth exposed as
herThin, cruel lips were pulled back in a full snarl.
 
I couldn't help being a half an hour late, it took me that long to
tie my shoes. Belinda took me to work out with dumbbells.
When she was not looking, I ran and hid in the men's room.
She sent Lars to find me.
Then, as punishment, she put me on the rowing machine -- which I sank.
 
FRIDAY:
I hate that bitch Belinda more than any human being has ever hated any
other human being in the history of the world.
Stupid, skinny, anemic little cheerleader.
If there was a part of my body I could move without unbearable pain, I
would beat her with it. Belinda wanted me to work on my triceps. I don't
have any triceps! And if you don't want dents in the floor, don't hand
me the M- f- barbells or anything that weighs more than a
sandwich.
 
The treadmill flung me off and I landed on a health and nutrition
Teacher.
Why couldn't it have been someone softer, like the drama coach or the
Choir director?
 
SATURDAY:
 
Belinda left a message on my answering machine in her grating,
shrilly voice wondering why I did not show up today.
Just hearing her made me want to smash the machine with my planner.
However, I lacked the strength to even use the TV remote and ended up
catching eleven straight hours of the Weather Channel.
 
SUNDAYP:
 
I'm having the Church van pick me up for services today so I can go and
thank GOD that this week is over.
I will also pray that next year my wife (the bitch) will choose a
gift for me that is fun -- like a root canal or a vasectomy.


Stephen Russell
DBA / Developer

Electracash, Inc.
5100 Poplar Ave.
Suite 2518
Memphis, Tennessee 38137
1-901-684-0348
Email: [EMAIL PROTECTED]
www.electracash.com 

The real art of conversation is not only to say the right thing at the
right time, but also to leave unsaid the wrong thing at the tempting
moment.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated 

RE: Unique indexes are bad because why again?

2006-07-21 Thread stephen . russell
 From: Vince Teachout [EMAIL PROTECTED]
 Delete the bob row

 BROWSE
 * oops! we have NO bob!

 INDEX on fname TO crap unique   Let's rebuild the index - that will
 fix it, right?
 BROWSE
 * oops! we have NO bob!

 Unique = BAD

If you set order to 0 and browse, are all the bob's gone?  I would think
they should be.  And if so the Unique index worked as planed, in that it
considered all the values of bob in whole, lock stock and barrel.  What
you do to one you do to them all.

Just like if you worked on an FKey column and deleted all orderItems
where orderID='bob'

I agree that the  whole concept around unique is just miss
represented, and if it used the name Distinct it might make some more
sense.  It's really a very funky filter that should be avoided.








___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Birthday gift

2006-07-21 Thread Hal Kaplan
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Stephen Russell
Sent: Friday, July 21, 2006 11:59
To: profox@leafe.com
Subject: [OT] Birthday gift

If you read this without laughing out loud, there is something wrong
with you.
 
I started swimming and working out at the Y 

===

LOFL!!!  That truly is the funniest thing I ever heard.

What was the rest of that crap following?  I was too busy laughing to
read it.

HALinNY = nothing wrong


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


[NF] SQL Server equivalent to Oracle for parameters/variables?

2006-07-21 Thread vfpmcp
In Oracle 9i(?), I was able to write stored procedure where I simply referenced 
the field behind the parameter/variable, thus telling Oracle the type and 
length implicitly (as it would look it up instead of me hardcoding it).  For 
example, cName as Customers.cName   instead of saying   cName varchar(20).  

Is there an equivalent in SQL Server?  I'm looking at BOL now but thought I'd 
ask in the interim.

Thanks!
--Mike







___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] SQL Server equivalent to Oracle for parameters/variables?

2006-07-21 Thread stephen . russell
 From: [EMAIL PROTECTED]
 
 In Oracle 9i(?), I was able to write stored procedure where I simply 
 referenced the field behind the parameter/variable, thus telling Oracle the 
 type and length implicitly (as it would look it up instead of me hardcoding 
 it).  For example, cName as Customers.cName   instead of saying   cName 
 varchar(20).  
 
 Is there an equivalent in SQL Server?  I'm looking at BOL now but thought I'd 
 ask in the interim.

Hey Charlie can I help Mike out?

Here is the top of one of my SPs:
I have to define the params at the top, so @ACHBatchID bigint,  are
all within ( ).  You then use AS to set the sprocs starting point.  I
need to DECLARE other vars for my processing.  I then set a gloable var
and run with what the SP is designed to do.

Create PROCEDURE [dbo].[ACH_InsertDomesticSaleEntry]
(
@ACHBatchID bigint,
@transactionId BIGINT,
@recurring INT,
@refCode VARCHAR(10),
@abaNum CHAR(8), 
@checkDig CHAR(1), 
@acctNumber VARCHAR(17), 
@acctType CHAR(8), 
@acctName VARCHAR(22),
@amount CHAR(10),
@ACHEntryDescriptor varchar(80),
@SEC_CODE CHAR(3),
@ODFI_ABA CHAR(8)
)
AS

DECLARE @recurringIndicator CHAR(1), @count INT, @transCode INT;
IF @recurring=0 SET @recurringIndicator = 'S'
ELSE SET @recurringIndicator = 'R'

SET NOCOUNT OFF;

SELECT @count = 1--COUNT(1) + 1 FROM Pending_ACH_Entry  WHERE
ACH_Batch_ID = @ACHBatchID;

IF (@acctType = 'SAVINGS') SET @transCode = 37
ELSE SET @transCode = 27

IF (@SEC_CODE  'TEL')
BEGIN

HTH



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Jim Winter
 If you set order to 0 and browse, are all the bob's gone?  

They shouldn't be because only the first Bob is in the index.

Regards,
Jim




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] adsense

2006-07-21 Thread Paul Hill

On 7/21/06, Derek Kalweit [EMAIL PROTECTED] wrote:

  shameless plug
  Indeed-- and if you're making money with your website, you may want to
  monitor it with a professional network/resource monitor:
 
  http://www.overseer-network-monitor.com/
 
  At least the free version(limited to 2 resources)...
 
  /shameless plug

 Firefox can't find the server at www.overseer-network-monitor.com

 I think I'll stick with Analog :-)

 http://www.analog.cx/

Different product type entirely. :)


Well, I couldn't reach your website so I couldn't know :-)


Looks like some of my ISP's DNS servers are flukey. I guess I'll be
switching to use my own-- I just set them up the other day for another
need anyways... Thanks.


It's working for me now I'm at work.

--
Paul


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: VFP Accessing AS400

2006-07-21 Thread Bill Arnold

 Guys,
 I have a requirement from one of our suppliers to access 
 their AS400 to upload delivery document details into an AS400 
 mainframe.
 
 Currently a VPN is used with an emulator (it looks like it is 
 Tun Plus they use aor a b*stardised verion of it which an 
 operator simply keys data into 24x80 standard DOS like screen 
 application.
 
 What I want to do to avoid this rekeying is to pipe the 
 information into the program from our VFP application, thus 
 emulating operator input. Has anyone out there done this 
 before and if so what approach did they use. I know I could 
 in effect write a VFP terminal emulator and I have a load of 
 possible solutions flying around in my head, but wondered if 
 anyone knwe of an emulator you can interface with from VFP or 
 if there was an all VFP solution. The link to the AS400 is via a VPN.


Dave, it was long ago, but I did something like this with the Attachmate
Extra 3270 emulator to transfer files between Access and OS390. You
definitely want to use an emulator because the 3270 data stream is too
hairy to mess with. A quick search on windows 3270 emulator brings up
a large list of possibilities, and I see Attachmate Extra is still
there, but it might not be the best choice anymore.
http://www.networkcomputing.com/610/610rev1.html has some emulator
reviews from last year. Maybe something more current can be found.

Funny, but the thing I remember having problems that DOEVENTS solved, so
watch for this.

I think it was IND$FILE that I used for file transfers (search ind$file
as400)


Bill



 
 Thanks in anticipation.
 
  
 Dave Crozier
  The secret to staying young is to live honestly, eat slowly, 
 and to lie about your age 
 
  
 
 -- 
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.10.3/394 - Release 
 Date: 20/07/2006
  
 
 
 
 
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


[NF] Easier way to debug SQL Server 2000 stored procs?

2006-07-21 Thread vfpmcp
Gotta hope that there's an easier way than using the Query Analyzer to debug 
SQL Server 2000 stored procs.  What a p.o.s.  Again, the tools I had with 
Oracle9 were MUCH MORE FRIENDLY.  

Ugh.  Suggestions?  I want to test from the server, not from Fox.

tia,
--Michael







___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Richard Kaye
There's one minor exception, imho. It may be useful as a temporary index 
built at runtime as needed. Throw it away when you don't need it anymore 
and certainly don't depend on its accuracy for anything other than the 
current task. Of course, there are many other ways to accomplish a 
filtered view of data so whether it makes sense to use a unique index is 
dependent on the situation.


Vince Teachout wrote:

Unique = BAD


--
Richard Kaye
Artfact/RFC Systems
Voice: 617.219.1038

For the fastest response time, please send your support
queries to:

Technical Support - [EMAIL PROTECTED]
Australian Support - [EMAIL PROTECTED]
Internet Support - [EMAIL PROTECTED]
All Other Requests - [EMAIL PROTECTED]

-
This message has been checked for viruses before sending.
-



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Easier way to debug SQL Server 2000 stored procs?

2006-07-21 Thread Michael Hawksworth

Have a look at http://www.sqlmanager.net/

Even the free version of the SQL manager allows you to run a procedure 
with parameters.


--
Michael Hawksworth
Visual Fox Solutions

[EMAIL PROTECTED]
www.foxpro.co.uk




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Easier way to debug SQL Server 2000 stored procs?

2006-07-21 Thread stephen . russell
 From: [EMAIL PROTECTED]
 Date: Fri, July 21, 2006 9:31 am
 To: profox@leafe.com

 Gotta hope that there's an easier way than using the Query Analyzer to debug 
 SQL Server 2000 stored procs.  What a p.o.s.  Again, the tools I had with 
 Oracle9 were MUCH MORE FRIENDLY.

 Ugh.  Suggestions?  I want to test from the server, not from Fox.

Looks like 1996 software doesn't it?  It works is the best that I can
say.  Notice the absence of the word well ?

I have never run across an alternative, and I have spent a lot of time
in debug mode in SPs.  :(



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Bob Lee, your mail is waiting

2006-07-21 Thread Bob Lee

[EMAIL PROTECTED]

or [EMAIL PROTECTED]

Either way..

Bob Lee

- Original Message - 
From: Whil Hentzen (Pro*) [EMAIL PROTECTED]

To: [EMAIL PROTECTED]
Sent: Thursday, July 20, 2006 8:08 PM
Subject: [NF] Bob Lee, your mail is waiting



But sending it to [EMAIL PROTECTED] keeps getting bounced.

And the reply to in your messages to me has an 'l' (el) after the .com, so 
reply doesn't work either.


Whil



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Day of Week from Command Prompt

2006-07-21 Thread Malcolm Greene
Robbo,

 echo %date:~6,2%

Very cool! A new trick for this old dog.

Cheers!
Malcolm


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] SQL Server equivalent to Oracle for parameters/variables?

2006-07-21 Thread Charlie Coleman

At 09:19 AM 7/21/2006 -0700, [EMAIL PROTECTED] wrote:

 From: [EMAIL PROTECTED]

 In Oracle 9i(?), I was able to write stored procedure where I simply 
referenced the field behind the parameter/variable, thus telling Oracle 
the type and length implicitly (as it would look it up instead of me 
hardcoding it).  For example, cName as Customers.cName   instead of 
saying   cName varchar(20).


 Is there an equivalent in SQL Server?  I'm looking at BOL now but 
thought I'd ask in the interim.


Hey Charlie can I help Mike out?

...

Are you asking my permission, or my estimation that you'll actually be able 
to help him?


;-)

-Charlie



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Birthday gift

2006-07-21 Thread Leland Jackson

HaHhhahahahah,

Regards,
LelandJ


Stephen Russell wrote:


If you read this without laughing out loud, there is something wrong
with you.

I started swimming and working out at the Y and a friend passed this
story to me.  

 


This is dedicated to everyone who ever attempted to get into a regular
 


workout routine.

For my sixty fifth birthday this year, my wife (the dear) purchased a
week of personal training at the local health club for me. Although I am
Still in great shape since playing on my college football team 45 years
Ago, I decided it would be a good idea to go ahead and give it a try.

I called the club and made my reservations with a personal trainer named
Belinda, who identified herself as a 26-year-old aerobics instructor and
model for athletic clothing and swim wear. My wife seemed pleased with
my enthusiasm to get started!

The club encouraged me to keep a diary to chart my progress . .
Dear Diary:

MONDAY:

Started my day at 6:00 a.m.
Tough to get out of bed, but found it was well worth it when I
arrived at the health club to find Belinda waiting for me.

She is something of a Greek goddess - with blond hair, dancing eyes and
Dazzling white smile. Woo Hoo!!
Belinda gave me a tour and showed me the machines.

She took my pulse after five minutes on the treadmill.
She was alarmed that my pulse was so fast, but I attribute it to
standing next to her in her Lycra aerobic outfit.

I enjoyed watching the skillful way in which she conducted her
aerobics Class after my workout today. Very inspiring!

Belinda was encouraging as I did my sit-ups, although my gut was already
aching from holding it in the whole time she was around.
This is going to be a FANTASTIC week!!

TUESDAY:

I drank a whole pot of coffee, but I finally made it out the door.

Belinda made me lie on my back and push a heavy iron bar into the air
while she put weights on it!

My legs were a little wobbly on the treadmill, but I made the full
tile. Belinda's rewarding smile made it all worthwhile.

I feel GREAT!! It's a whole new life for me.

WEDNESDAY:
The only way I can brush my teeth is by laying on the toothbrush on the
counter and moving my mouth back and forth over it.
I believe I have a hernia in both pectorals. Driving was OK as long
as I didn't try to steer or stop. I parked on top of a GEO in the club
parking lot.

Belinda was impatient with me, insisting that my screams bothered other
club members. Her voice is a little too perky for early in the morning
and when she scolds, she gets this nasally whine that is VERY annoying.

My chest hurt when I got on the treadmill, so Belinda put me on the
Stair monster.

Why the hell would anyone invent a machine to simulate an activity
rendered obsolete by elevators?

Belinda told me it would help me get in shape and enjoy life.
She said some other shit too.

THURSDAY:

Belinda was waiting for me with her vampire-like teeth exposed as
herThin, cruel lips were pulled back in a full snarl.

I couldn't help being a half an hour late, it took me that long to
tie my shoes. Belinda took me to work out with dumbbells.
When she was not looking, I ran and hid in the men's room.
She sent Lars to find me.
Then, as punishment, she put me on the rowing machine -- which I sank.

FRIDAY:
I hate that bitch Belinda more than any human being has ever hated any
other human being in the history of the world.
Stupid, skinny, anemic little cheerleader.
If there was a part of my body I could move without unbearable pain, I
would beat her with it. Belinda wanted me to work on my triceps. I don't
have any triceps! And if you don't want dents in the floor, don't hand
me the M- f- barbells or anything that weighs more than a
sandwich.

The treadmill flung me off and I landed on a health and nutrition
Teacher.
Why couldn't it have been someone softer, like the drama coach or the
Choir director?

SATURDAY:

Belinda left a message on my answering machine in her grating,
shrilly voice wondering why I did not show up today.
Just hearing her made me want to smash the machine with my planner.
However, I lacked the strength to even use the TV remote and ended up
catching eleven straight hours of the Weather Channel.

SUNDAYP:

I'm having the Church van pick me up for services today so I can go and
thank GOD that this week is over.
I will also pray that next year my wife (the bitch) will choose a
gift for me that is fun -- like a root canal or a vasectomy.


Stephen Russell
DBA / Developer

Electracash, Inc.
5100 Poplar Ave.
Suite 2518
Memphis, Tennessee 38137
1-901-684-0348
Email: [EMAIL PROTECTED]
www.electracash.com 


The real art of conversation is not only to say the right thing at the
right time, but also to leave unsaid the wrong thing at the tempting
moment.




[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: 

RE: [NF] Easier way to debug SQL Server 2000 stored procs?

2006-07-21 Thread Christof Wollenhaupt
Hi,

 Gotta hope that there's an easier way than using the Query Analyzer to
debug SQL Server 2000 stored procs.  What a p.o.s.  Again, the tools I had
with Oracle9 were MUCH MORE FRIENDLY.

http://www.ftponline.com/vsm/2002_11/magazine/columns/databasedesign/

-- 
Christof



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Charlie Coleman

At 09:13 AM 7/21/2006 -0700, [EMAIL PROTECTED] wrote:
...

 And, by the way, I have various config files that I use which allow my
 systems to work with the server and other networked servers with no
 problems. Of course, I do NOT use 'standard' MS config files. Maybe that's
 why mine works. ?

What is a standard M$ config file I have no idea what your talking
about.  Config.FP or web.config?


config.fp[w] [?] certainly is not an MS standard. Isn't web.config (sp?) is 
the standard for .Net web pages? But other 'config' files are things like 
the Windows registry, Windows system log, various .DAT files, etc.


I don't know if it was you or someone else who implied that having config 
files for VFP on Win2003 Server was a problem. Or that VFP required a very 
specific placement of all it's files. My point was I have no problems with 
my VFP systems on Win server 2003 but I design my own resource (config) 
files that I can rely upon.


Bottom line: the less you rely on Windows for various services, the better 
protected you are from patches and even OS updates.


-Charlie



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] SQL Server equivalent to Oracle for parameters/variables?

2006-07-21 Thread Andy Davies
I guess you mean as in:
FUNCTION EditCust(pcCustName IN mydb.Customers.cName%TYPE, pcCode IN ...)

No, I haven't found it in ms SQL Server - it's neat and I miss it.

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Easier way to debug SQL Server 2000 stored procs?

2006-07-21 Thread Andy Davies
Again, the tools I had with Oracle9 were MUCH MORE FRIENDLY.

or maybe just MUCH MORE FAMILIAR?
with some glaring examples (like %TYPE) I found ms SQL Server like a breath
of fresh air after Oracle
--otoh who needs *procedural* SQL - keep pl/SQL and T-SQL - *real* datbase
programmers work with CURSORs (CURrent Set Of Result)s

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: VFP Accessing AS400

2006-07-21 Thread Dave Crozier
Thanks Bill,
I'll give it a look

Dave Crozier

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Bill Arnold
Sent: 21 July 2006 16:02
To: 'ProFox Email List'
Subject: RE: VFP Accessing AS400


 Guys,
 I have a requirement from one of our suppliers to access 
 their AS400 to upload delivery document details into an AS400 
 mainframe.
 
 Currently a VPN is used with an emulator (it looks like it is 
 Tun Plus they use aor a b*stardised verion of it which an 
 operator simply keys data into 24x80 standard DOS like screen 
 application.
 
 What I want to do to avoid this rekeying is to pipe the 
 information into the program from our VFP application, thus 
 emulating operator input. Has anyone out there done this 
 before and if so what approach did they use. I know I could 
 in effect write a VFP terminal emulator and I have a load of 
 possible solutions flying around in my head, but wondered if 
 anyone knwe of an emulator you can interface with from VFP or 
 if there was an all VFP solution. The link to the AS400 is via a VPN.


Dave, it was long ago, but I did something like this with the Attachmate
Extra 3270 emulator to transfer files between Access and OS390. You
definitely want to use an emulator because the 3270 data stream is too
hairy to mess with. A quick search on windows 3270 emulator brings up
a large list of possibilities, and I see Attachmate Extra is still
there, but it might not be the best choice anymore.
http://www.networkcomputing.com/610/610rev1.html has some emulator
reviews from last year. Maybe something more current can be found.

Funny, but the thing I remember having problems that DOEVENTS solved, so
watch for this.

I think it was IND$FILE that I used for file transfers (search ind$file
as400)


Bill



 
 Thanks in anticipation.
 
  
 Dave Crozier
  The secret to staying young is to live honestly, eat slowly, 
 and to lie about your age 
 
  
 
 -- 
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.394 / Virus Database: 268.10.3/394 - Release 
 Date: 20/07/2006
  
 
 
 
 
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Web Service Help

2006-07-21 Thread Nick Cipollina
You can say what you want, but I appreciate the suggestion from Steve.
It is going to be a lot easier for me to write this as a .Net web
service, especially when considering the app that is going to be calling
it is a .Net app.

Thanks,
 
Nick Cipollina
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Charlie Coleman
Sent: Friday, July 21, 2006 10:56 AM
To: [EMAIL PROTECTED]
Subject: RE: Web Service Help

...
   The VFP9 doc is pretty clear, so I think it's worth a try unless
   there's a better suggestion (then do it in .NET, of course g).
...
  Bill the thread is to Create a WS.  Seems that VFP 
  Server2003 don't work well together.

Windows 2003 server changes things from Windows 2000 server.

(Side note: Of course things would change. So many vulnerabilities.
Gotta 
change things around to make it 'look' like you plugged the holes. And 
changing things also gives 'justification' words for MS-dead-heads to
say 
'see ya gotta do it MS's way...').

There was a setting somewhere in IIS which had to be turned 'on' to
allow 
certain other file types (apart from asp? or aspx?) to be invoked on a
web 
site. That's probably 1 issue. I have a West-Wind Webconnection
application 
which I moved from winsrv 2000 to winsrv 2003. WWWC of course, uses a
.dll. 
It wouldn't work until I tracked down that stupid setting and changed
it.

So, wrong again, VFP seems to work fine on Win 2003 server (once you 
understand what MS changed again).

And, by the way, I have various config files that I use which allow my 
systems to work with the server and other networked servers with no 
problems. Of course, I do NOT use 'standard' MS config files. Maybe
that's 
why mine works. ?


  Doing it in .NET is pretty simple, and the sig of the
  requestor says .NET developer.  Go figure why I said to do it there.

Be that as it may, the question wasn't posed to a .NET group, it was
asked of a VFP group. I'll take that as a hint that a VFP solution is
being sought and that the solution might be helpful to others who are
using VFP. We are interested in getting the most out of, if not
advancing, VFP, are we not?

Bill, remember that Steve is an MS-dead-head. He really likes .Net and
MS 
SQL Server and likes to bash VFP.

Steve, why are you still on this list again? If just you like posting
jokes 
and stuff, why not keep your posts to NF and OT. We all 'get' that you
used 
to use VFP, that you're into .Net and MS SQL server now, that you think
VFP 
is oh so out of date, that everything we do here is so 'old hat'. IMO,
Bill 
is right about this list: we're here to offer solutions in VFP - we are 
here to foster and advance VFP. So, Steve, you're obviously not in 
agreement with that concept so why remain, and post, on the list? I'm 
trying to understand. Every now and then a SQL Server question does
arise 
and you provide feedback. But since you don't really use VFP much
anymore, 
why keep posting to VFP questions?

-Charlie



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Day of Week from Command Prompt

2006-07-21 Thread Andy Davies
echo %date:~0,3%

works where I live  == Fri

Andrew Davies  MBCS CITP
  - AndyD    8-)#


**

This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

Please contact [EMAIL PROTECTED] with any queries.

**



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Inventor of Philly Cheesesteak dead

2006-07-21 Thread Michael Madigan
He will be burried in waxed paper and covered in
cheeze whiz.


http://www.macon.com/mld/macon/news/nation/15093016.htm

Right Wing Stuff at http://www.cafepress.com/rightwingmike
Horse Racing Photos at http://www.HorseRacingPix.com


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Vince Teachout

[EMAIL PROTECTED] wrote:

From: Vince Teachout [EMAIL PROTECTED]
Delete the bob row

BROWSE
* oops! we have NO bob!

INDEX on fname TO crap unique   Let's rebuild the index - that will
fix it, right?
BROWSE
* oops! we have NO bob!

Unique = BAD



If you set order to 0 and browse, are all the bob's gone?  I would think
they should be.  And if so the Unique index worked as planed, in that it
considered all the values of bob in whole, lock stock and barrel.  What
you do to one you do to them all.
  
No, the non-deleted Bobs would still be there.  IIRC, you have to 
actually pack the file and reindex to get Unique to do what you want.  
UNIQUE was one thing I did NOT miss when coming into VFP from Clipper!



Just like if you worked on an FKey column and deleted all orderItems
where orderID='bob'
  

Naw, you're consfusing Unique with something intelligent, like SQL.  :-)


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Vince Teachout

Richard Kaye wrote:
There's one minor exception, imho. It may be useful as a temporary 
index built at runtime as needed. Throw it away when you don't need it 
anymore and certainly don't depend on its accuracy for anything other 
than the current task. Of course, there are many other ways to 
accomplish a filtered view of data so whether it makes sense to use a 
unique index is dependent on the situation.


I just pulled that example out of my  head to give a quick answer 
this morning.  If you only need a temp index, I honestly can't think of 
anything that couldn't be done better with a SELECT DISTINCT.  JMHO.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Vince Teachout

Peter Cushing wrote:
That means Ted has alice, carol and sue all to himself, the lucky 
bleeder ;-)

BOTH Sues (twins) actually.  The bastard.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.


[NF] How to add service to a company

2006-07-21 Thread Stephen Russell
I got this from a friend asking if I had ever done this.  

wrote in to suggest I get either a large group of people in blue polo
shirts and khakis to enter a Best Buy or a group in red polo shirts and
khakis to enter a Target. Wearing clothing almost identical to the
store's uniform, the agents would not claim to work at the store but
would be friendly and helpful if anyone had a question.

 http://www.improveverywhere.com/mission_view.php?mission_id=57



Stephen Russell
DBA / Developer

Electracash, Inc.
5100 Poplar Ave.
Suite 2518
Memphis, Tennessee 38137
1-901-684-0348
Email: [EMAIL PROTECTED]
www.electracash.com 

The real art of conversation is not only to say the right thing at the
right time, but also to leave unsaid the wrong thing at the tempting
moment.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Not just a number, it's a human being.

2006-07-21 Thread Helio W.

Oh yeah, the Bin Laden family connection.

On 7/21/06, Stephen the Cook [EMAIL PROTECTED] wrote:


Helio W.  wrote:
 So why not bomb and invade Saudi Arabia, then?

Duh.  That's were the oil friendships lie.  Been that way for 3 Bush
generations, and if the twins play the game properly it could continue to
a
fourth.

Stephen Russell
DBA / Operations Developer



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


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] AJAX getting a big push real soon

2006-07-21 Thread Man-wai CHANG
Stephen Russell wrote:
 The Ajaxifiation Of Yahoo
 http://www.devwebpro.com/devwebpro-39-20060720TheAjaxifiationofYahoo.html

Something I found off the web... -_-

-- 
  .~.http://changmw.homeip.net
 / v \   May the Force and Farce be with you! Linux 2.6.17.6
/( _ )\  (Ubuntu 6.06)  22:00:01 up 5 days 5:23
  ^ ^0 users load average: 1.00 1.00 1.00
news://news.3home.net news://news.hkpcug.org news://news.newsgroup.com.hk


--- StripMime Report -- processed MIME parts ---
multipart/mixed
  text/plain (text body -- kept)
  application/x-bittorrent
---


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Text Box Special Effect 3d

2006-07-21 Thread [EMAIL PROTECTED]
Original Message:

 The special effect 3D property for a text box does not seem to work in
 vfp 9.0. Does anyone have a solution?

Try setting Themes to .F.

Chester Friesen


mail2web - Check your email from the web at
http://mail2web.com/ .




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Unique indexes are bad because why again?

2006-07-21 Thread Garrett Fitzgerald

On 7/21/06, Vince Teachout [EMAIL PROTECTED] wrote:

I just pulled that example out of my  head to give a quick answer
this morning.  If you only need a temp index, I honestly can't think of
anything that couldn't be done better with a SELECT DISTINCT.  JMHO.


Update the underlying table, for example? :-)


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Still buying Dell computers?

2006-07-21 Thread Chet Gardiner

Dell profits down -- hiring 2000 more service workers...

Other moves the computer giant has taken to make its products more 
attractive include hiring more than 2,000 staff to join its customer 
service division.


http://news.bbc.co.uk/2/hi/business/5203452.stm

Dell hiring more workers in India...

*The world's biggest computer maker, Dell, will be increasing its 
workforce in India by 50% in the next two years.*


http://news.bbc.co.uk/2/hi/south_asia/4663484.stm

These articles should have been combined...


You could buy Gateway instead...  
http://www.buyblue.org/node/976/view/summary



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] adsense

2006-07-21 Thread Derek Kalweit

  Firefox can't find the server at www.overseer-network-monitor.com
 
  I think I'll stick with Analog :-)
 
  http://www.analog.cx/

 Different product type entirely. :)

Well, I couldn't reach your website so I couldn't know :-)

 Looks like some of my ISP's DNS servers are flukey. I guess I'll be
 switching to use my own-- I just set them up the other day for another
 need anyways... Thanks.

It's working for me now I'm at work.


I just switched DNS to my own servers-- hopefully that'll prevent my
site being unavailable to some due to incompetent ISPs... Not sure why
some people had the problem-- I've had many thousands of visits to the
site in the past month or so...


--
Derek


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Still buying Dell computers?

2006-07-21 Thread David Crooks
On Friday, July 21, 2006 3:51 PM Chet Gardiner wrote:

You could buy Gateway instead...  
http://www.buyblue.org/node/976/view/summary

$100,913 to Democrats
$23,500 to Republicans
$0 to Others
$124,413 in Total Contributions

I don't see MADigan buying a Gateway anytime soon... 8-)

David L. Crooks



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Still buying Dell computers?

2006-07-21 Thread Michael Madigan
No CROOK s, I won't be.

--- David Crooks [EMAIL PROTECTED] wrote:

 On Friday, July 21, 2006 3:51 PM Chet Gardiner
 wrote:
 
 You could buy Gateway instead...  
 http://www.buyblue.org/node/976/view/summary
 
 $100,913 to Democrats
 $23,500 to Republicans
 $0 to Others
 $124,413 in Total Contributions
 
 I don't see MADigan buying a Gateway anytime soon...
 8-)
 
 David L. Crooks
 
 
 
 ___
 Post Messages to: ProFox@leafe.com
 Subscription Maintenance:
 http://leafe.com/mailman/listinfo/profox
 OT-free version of this list:
 http://leafe.com/mailman/listinfo/profoxtech
 ** 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.
 


Right Wing Stuff at http://www.cafepress.com/rightwingmike
Horse Racing Photos at http://www.HorseRacingPix.com


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] these girls have it a lot different today.

2006-07-21 Thread Stephen Russell
She began photographing Israeli female soldiers in the summer of 2004 as
part of her masters thesis project. She continues to photograph in both
Israel and New York. 

http://www.serialno3817131.com/

This site is her serial # while in the military.  

Stephen Russell
DBA / Developer

Electracash, Inc.
5100 Poplar Ave.
Suite 2518
Memphis, Tennessee 38137
1-901-684-0348
Email: [EMAIL PROTECTED]
www.electracash.com 

The real art of conversation is not only to say the right thing at the
right time, but also to leave unsaid the wrong thing at the tempting
moment.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Mark Stanton
Was that the expert system that would write all your code for you 
and no-one would ever need to code again?

The one that people had to hire programmers to use...

Mark




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Mark Stanton
@mail.gmail.com
Reply-To: profox@leafe.com

 An associate (and heavy-duty consultant for Accenture) like to quote
 There are 23 problems in computer science, and we keep solving them
 over, and over and over.

Got his email address?  ;-)


 I think there is a Fallacy of Generalization here:

Mebbe this is why we can't yet build robots like Asimov wrote about 8-)

Seems to me there's general bits and specific bits.
The general part is really pretty easy, at least in concept; 
take this list of stuff and put it into the corresponding places on this 
other list.  If something goes wrong do that.

This seems almost too obvious to speak it, but presumably the difference
between what you said to start with (there's lots of things doing this) 
what you said just there (a generalised solution is difficult, complex, 
expensive) means there's nothing that works like this just now 8-)


 And how do you handle conflicts? Failures to update? Connectivity
 errors? At the high end, MQ Series and MSMQ queue changes from source
 to target, retry after failures, report conflicts, etc.

Details, details... 8-)
I bet you're right. It's too hard to do as a completely automatic thing...
yet 8-)

Mark Stanton
One small step for mankind...




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Mark Stanton
Hi Bill,

Thanks for that.

Sounds like there's not been the required separation of 
generalisation and particularisation of this problem yet.

In which case I've probably got some research and thinking to do.
And as such those pointers of yours will be very useful grist to the 
mill!  Thank you.

Best regards
Mark Stanton
One small step for mankind...




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] these girls have it a lot different today.

2006-07-21 Thread Michael Madigan
Is that supposed to be funny?

--- Hal Kaplan [EMAIL PROTECTED] wrote:

 The Israeli army is slick.  They have a lot of women
 in combat billets
 because if they should lose a war they can say, Big
 deal.  You beat a
 bunch of girls.  Oh, wow!
 
 HALinNY 
 
 
 ___
 Post Messages to: ProFox@leafe.com
 Subscription Maintenance:
 http://leafe.com/mailman/listinfo/profox
 OT-free version of this list:
 http://leafe.com/mailman/listinfo/profoxtech
 ** 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.
 


Right Wing Stuff at http://www.cafepress.com/rightwingmike
Horse Racing Photos at http://www.HorseRacingPix.com


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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: Database mapping

2006-07-21 Thread Chet Gardiner

Nope, that was COBOL.

That's how IBM marketed it in '66.  Cobol will do away with the need for 
programmers...



Mark Stanton wrote:

Was that the expert system that would write all your code for you 
and no-one would ever need to code again?


The one that people had to hire programmers to use...

Mark





[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Prescient Quote

2006-07-21 Thread Ed Leafe

Which Democratic leader said this about the Bush policy in Iraq?

	Never has so much military and economic and diplomatic power been  
used so ineffectively, and if after all of this time, and all of this  
sacrifice, and all of this support, there is still no end in sight,  
then I say the time has come for the American people to turn to new  
leadership not tied to the mistakes and policies of the past.



-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com





___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Prescient Quote

2006-07-21 Thread Bill Arnold

You mean there is actually a person somewhere in Washington standing up
to the neocons?

Nah. Didn't even say it.



The lunatic is in my head
The lunatic is in my head
you raise the blade, you make the change
you rearrange me ' till I'm sane
you lock the door
and throw away the key
there's someone in my head but it's not me

And if the cloud bursts, thunder in your ear
you shout and no one seems to hear

- Pink Floyd: Dark side of the moon




Bill


 
   Which Democratic leader said this about the Bush policy in Iraq?
 
   Never has so much military and economic and diplomatic 
 power been used so ineffectively, and if after all of this time, and
all 
 of this sacrifice, and all of this support, there is still no end in
sight,  
 then I say the time has come for the American people to turn to new  
 leadership not tied to the mistakes and policies of the past.
 
 
 -- Ed Leafe



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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] Prescient Quote

2006-07-21 Thread Michael Madigan
I bet you guys are rooting for Hezbollah too.

--- Bill Arnold [EMAIL PROTECTED] wrote:

 
 You mean there is actually a person somewhere in
 Washington standing up
 to the neocons?
 
 Nah. Didn't even say it.
 
 
 
 The lunatic is in my head
 The lunatic is in my head
 you raise the blade, you make the change
 you rearrange me ' till I'm sane
 you lock the door
 and throw away the key
 there's someone in my head but it's not me
 
 And if the cloud bursts, thunder in your ear
 you shout and no one seems to hear
 
 - Pink Floyd: Dark side of the moon
 
 
 
 
 Bill
 
 
  
  Which Democratic leader said this about the Bush
 policy in Iraq?
  
  Never has so much military and economic and
 diplomatic 
  power been used so ineffectively, and if after all
 of this time, and
 all 
  of this sacrifice, and all of this support, there
 is still no end in
 sight,  
  then I say the time has come for the American
 people to turn to new  
  leadership not tied to the mistakes and policies
 of the past.
  
  
  -- Ed Leafe
 
 
 
 ___
 Post Messages to: ProFox@leafe.com
 Subscription Maintenance:
 http://leafe.com/mailman/listinfo/profox
 OT-free version of this list:
 http://leafe.com/mailman/listinfo/profoxtech
 ** 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.
 


Right Wing Stuff at http://www.cafepress.com/rightwingmike
Horse Racing Photos at http://www.HorseRacingPix.com


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** 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.