Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Paul Hill
On 6/11/07, Michael Madigan [EMAIL PROTECTED] wrote: Jews to the left of me Jews to the right of me And here we are stuck in the middle with you :-) -- Paul ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: Dumb reporting question

2007-06-11 Thread Dave Crozier
Garret, If you have the indexing on the file correct and match it with the group break levels in the report then you don't need any variables. You just specify the calculation of the field as Sum by(...level...). I must admit though that I still use variables as it is easier to change the report

Re: xmltocursor

2007-06-11 Thread Alan Bourke
You may find that the functionality in VFP to read XML can't handle very deeply nested schemas. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: [NF} FoxPro and .NET better than Linux?

2007-06-11 Thread Alan Bourke
Leland F. Jackson, CPA wrote: With these tools I can build a web site without the need of writing a single line of java code. Netbeans visual web plugin allows me to create web pages by dragging and dropping objects onto the designer frame and then filling out a property sheets on the

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Pete Theisen
On Sunday 10 June 2007 22:04, Bill Arnold wrote: It's not Lieberman specifically, but AIPAC and the soldiers of Israel in general that have seized American foreign policy with the same arrogance and belligerence practiced in Israel. It's not Iran that poses the greatest threat to us, it's

Algorithm to calculate intermediate colors

2007-06-11 Thread Paul Newton
I sent this message on 9th but apparentlt it didn't get through: I need to get RGB values for colors intermediate between two colors. E,g, RED - Dark pink - Medium pink - Light pink - WHITE or RED - Reddish orange - Orange - Yellowish orange - YELLOW I'm sure somebody must have done this

How to update a table ?

2007-06-11 Thread Eurico Chagas Filho
Hi I have this table in the form's environment, than I open another form, modal, with a private datasession. When I get back I would like to update the table, what's the best way ? Thanks, E. No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.472 / Virus

Re: How to update a table ?

2007-06-11 Thread Alan Bourke
TABLEUPDATE() ? ___ 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 Searchable Archive:

RE: How to update a table ?

2007-06-11 Thread Dave Crozier
Eurico, Or if you are not using buffering (the VFP Default) Select TableAlias Goto Recno(TableAlias) Flush or simply change the record pointer by moving to another record. Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Bourke Sent:

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread MB Software Solutions General Account
Pete Theisen wrote: On Sunday 10 June 2007 22:04, Bill Arnold wrote: It's not Lieberman specifically, but AIPAC and the soldiers of Israel in general that have seized American foreign policy with the same arrogance and belligerence practiced in Israel. It's not Iran that poses the

How to update a table ?

2007-06-11 Thread Eurico Chagas Filho
Hi Sorry, my bad. The table, table1, resides in the form's environment and is not updated, it's just for lookup. But, in another form table1 is updated and I need to access the fresh data in table1. The only way is to issue an USE than USE AGAIN or what ? TIA, E. No virus found in this outgoing

Serial Communication

2007-06-11 Thread Eurico Chagas Filho
Hi I need to access a printer connected via com1 or com2. Can someone point me in the right direction ? TIA, E. No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.472 / Virus Database: 269.8.13/843 - Release Date: 6/10/2007 1:39 PM

[OT] Any .NET SMTP gurus out there?

2007-06-11 Thread Graham Brown \(CompSYS\)
Hi all Totally OT I know and probably a bit of a swear word on this forum!! I've just inherited an ASP.NET (c#) app. The customer has just moved the hosting and now it won't send emails. There are no obvious error messages, it seems to go through but the emails never arrive. The code hasn't

RE: How to update a table ?

2007-06-11 Thread Dave Crozier
Eurico, So the lookup form (modal) is the one which updates the record. In that case you need to: 1. Make sure that the record is UNLOCKED in the calling form before you call the Modal Form or you will get update conflicts 2. When the modal form has been called and the updated record written

RE: Serial Communication

2007-06-11 Thread Dave Crozier
Eurico, You need to use the Dos Mode command Mode lpt1:=com1: Look at http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en- us/mode.mspx?mfr=true or http://tinyurl.com/yoljhw Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: How to update a table ?

2007-06-11 Thread Rafael Copquin
I'm not quite sure of what you mean, because you are missign some explanation. Therefore, I assume you want to update the original table with a value from the table open in the modal form. I would do this: In the modal form: init event thisform.addproperty('oRecord') suppose you show a grid

Re: [NF] Any .NET SMTP gurus out there?

2007-06-11 Thread Ed Leafe
On Jun 11, 2007, at 10:16 AM, Graham Brown ((CompSYS)) wrote: Totally OT I know and probably a bit of a swear word on this forum!! Actually, should be [NF], since this is tech-related. I've just inherited an ASP.NET (c#) app. The customer has just moved the hosting and now it

[OT] Crazy Person Vs Moral Pillar Of Society

2007-06-11 Thread Helio W.
http://www.myconfinedspace.com/wp-content/uploads/2007/05/idt20070116.png ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: [OT] Any .NET SMTP gurus out there?

2007-06-11 Thread MB Software Solutions General Account
Can't help you, but this certainly is NF, not OT! Graham Brown (CompSYS) wrote: Hi all Totally OT I know and probably a bit of a swear word on this forum!! I've just inherited an ASP.NET (c#) app. The customer has just moved the hosting and now it won't send emails. There are no obvious

Re: Serial Communication

2007-06-11 Thread Bill Kressbach
Take a look at mscom32.ocx Bill I need to access a printer connected via com1 or com2. Can someone point me in the right direction ? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free

Re: How to update a table ?

2007-06-11 Thread Rafael Copquin
In that case, and following the example in my previous post, you could do the following: In the second form, which you said has a private data session, you could use optimistic table buffering, thus: load event cursorsetprop('buffering',5,'thetabletobeupdated') in the save event

Re: Serial Communication

2007-06-11 Thread Derek Kalweit
I need to access a printer connected via com1 or com2. Can someone point me in the right direction ? Create a Windows printer, use the 'Generic/Text only' driver, and point it to the com port. You can then do a set printer to command in VFP and use ??? and SET DEVICE TO PRINTER and use @SAY's

RE: Serial Communication

2007-06-11 Thread Dave Crozier
Eurico, As Bill has pointed out if you need to access the serial ports at low level then use mscomm32. I have done lots of work with this activeX and if you need any help then just put out a call and I'll send you some source code. However I thought you simply wanted to access the printer as a

Serial Communication

2007-06-11 Thread Eurico Chagas Filho
Hi Guys Thanks much. I need to print to a receipt printer in a POS environment. Using the DLLs provided by the printer dealer takes too long to print. There are two DLLs, I can't find now that would wrap any DLL and allow the program to go on, anybody ? Please Dave send my way any code u got.

RE: Serial Communication

2007-06-11 Thread Lou Syracuse
What kind of receipt printer? Star? Epson? Take a look for oPos (OLE for Retail POS) drivers for the printer you are using. That is what we use on our VFP-based POS System to communicate with comm and USB receipt printers. Will save you a TON of time, and they work great for us. Lou

Re: Serial Communication

2007-06-11 Thread Alan Bourke
You could try using only printer fonts on the report layout. ___ 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 Searchable

RE: Serial Communication

2007-06-11 Thread Dave Crozier
Eurico, Which Operating system XP, 2K or Aagh Vista! Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eurico Chagas Filho Sent: 11 June 2007 15:37 To: 'ProFox Email List' Subject: Serial Communication Hi Guys Thanks much. I need to print

Serial Communication

2007-06-11 Thread Eurico Chagas Filho
Dave XP up to date and to my regret Visa Home Premium. Thanks, E. No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.472 / Virus Database: 269.8.13/843 - Release Date: 6/10/2007 1:39 PM ___ Post Messages to:

RE: Serial Communication

2007-06-11 Thread Dave Crozier
Eurico, If you are going to frive the printer at interface level then you will need to know all the setup codes, initialisation sequences, formatting codes etc. Are you sure that you have these as without them you won't stand a chance? Driving printers/devices at byte level isn't a trivial

Serial Communication

2007-06-11 Thread Eurico Chagas Filho
Dave It's http://www.bematech.com.br/ and the printer is MP-20 FI II. But I got a program in Clipper that uses raw print and FreadFwrite w the codes, so I am covered. Anyway I like to have all the info I can get before I start something. E. No virus found in this outgoing message. Checked by

RE: Serial Communication

2007-06-11 Thread Kent Belan
Hello, I use CommTools library to talk to a modem on a Comm port. I converted the code from Clipper to VFP9 and it works great. HTH, Kent -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Eurico Chagas Filho Sent: Monday, June 11, 2007 11:35 AM To:

Re: Serial Communication

2007-06-11 Thread Paul Hill
On 6/11/07, Dave Crozier [EMAIL PROTECTED] wrote: Eurico, If you are going to frive the printer at interface level then you will need to know all the setup codes, initialisation sequences, formatting codes etc. Are you sure that you have these as without them you won't stand a chance?

How to update a table ?

2007-06-11 Thread Eurico Chagas Filho
Hi Well, the lookup table was used in a View and to get taxes. In the modal form I could do an append blank on this table if necessary, that's why I needed to update. I ended up making the modal form with dataSession=1 and issuing a TableUpdate(). Thanks, E. No virus found in this outgoing

Fwd: [NF] Apple Introduces Safari for Windows

2007-06-11 Thread Ed Leafe
Web browsing just got more interesting... Begin forwarded message: From: MacTech News Moderator [EMAIL PROTECTED] Date: June 11, 2007 3:45:56 PM EDT To: [EMAIL PROTECTED] Subject: [MTNews] Apple Introduces Safari for Windows This message comes to you from MacTech News -- the Mac(tm) OS

[NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Matthew Jarvis
I don't know - maybe it's the crazy nature of my work, or maybe just this environment, or whatever I'm just feeling like I'm getting dumber all the time... in addition to that my stamina for sitting here working with computers for more than 9 hours is gone (that might actually be a good

[OT]Announcement from Apple

2007-06-11 Thread Derek Kalweit
Apple Computer announced today that it has developed a computer chip that can store and play music in women's breast implants. The iBoob will cost $499 or $599 depending on cup size. This is considered to be a major breakthrough because women are always complaining about men staring at their

Re: [NF] Apple Introduces Safari for Windows

2007-06-11 Thread Kenneth Kixmoeller/fh
On Jun 11, 2007, at 3:11 PM, Ed Leafe wrote: Apple Introduces Safari for Windows Phooey -- it requires XP. I stopped at W2K. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version

Re: [NF] Apple Introduces Safari for Windows

2007-06-11 Thread Ted Roche
On 6/11/07, Ed Leafe [EMAIL PROTECTED] wrote: Web browsing just got more interesting... Bizarre. Ed, any idea why Apple is doing this? -- Ted Roche Ted Roche Associates, LLC http://www.tedroche.com ___ Post Messages to: ProFox@leafe.com

Re: [OT]Announcement from Apple

2007-06-11 Thread Michael Madigan
What we really need is a chip to inplant in their brain to make them STFU. LOL --- Derek Kalweit [EMAIL PROTECTED] wrote: Apple Computer announced today that it has developed a computer chip that can store and play music in women's breast implants. The iBoob will cost $499 or $599

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Michael Madigan
I'm sure he believes the Jews were partly responsible for the Holocaust. --- MB Software Solutions General Account [EMAIL PROTECTED] wrote: Pete Theisen wrote: On Sunday 10 June 2007 22:04, Bill Arnold wrote: It's not Lieberman specifically, but AIPAC and the soldiers of Israel in

Re: [OT] Crazy Person Vs Moral Pillar Of Society

2007-06-11 Thread Michael Madigan
Helio, How was your gay pride weekend in Brazil? Are you able to sit yet? http://abcnews.go.com/International/wireStory?id=3264287 --- Helio W. [EMAIL PROTECTED] wrote: http://www.myconfinedspace.com/wp-content/uploads/2007/05/idt20070116.png

Re: [NF] Apple Introduces Safari for Windows

2007-06-11 Thread Ed Leafe
On Jun 11, 2007, at 4:29 PM, Ted Roche wrote: Bizarre. Ed, any idea why Apple is doing this? One word: iPhone. Safari 3 is the development platform for iPhone. -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Post

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread MB Software Solutions General Account
Michael Madigan wrote: I'm sure he believes the Jews were partly responsible for the Holocaust. Sounds like the convicted rapist saying She was asking for it! On a serious note, I doubt Bill believes that. ___ Post Messages to:

Re: [NF] Apple Introduces Safari for Windows

2007-06-11 Thread Ted Roche
On 6/11/07, Ed Leafe [EMAIL PROTECTED] wrote: On Jun 11, 2007, at 4:29 PM, Ted Roche wrote: Bizarre. Ed, any idea why Apple is doing this? One word: iPhone. Safari 3 is the development platform for iPhone. Ah! So this is on the path to the iPhone SDK running on Windows.

Re: Algorithm to calculate intermediate colors

2007-06-11 Thread aj
I'm not a mathematician but maybe you could treat the color vectors as points on a graph. Start with red and draw a line to your ending color. I think all the points that are part of that line should give you the result you are looking for. Hope this helps A.J.

Re: Algorithm to calculate intermediate colors

2007-06-11 Thread aj
testing. I sent a reply to you but it didn't seem to get there. ___ 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

[test]

2007-06-11 Thread aj
Cant seem to post messages. Testing 123 ___ 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 Searchable Archive:

Re: [test]

2007-06-11 Thread Ed Leafe
On Jun 11, 2007, at 2:37 PM, aj wrote: Cant seem to post messages. Testing 123 You need to be subscribed. If not, messages are held until I can review them. I can then set the software to automatically accept your address (which I've now done). -- Ed Leafe -- http://leafe.com --

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Whil Hentzen (Pro*)
Ted Roche wrote: On 6/11/07, Matthew Jarvis [EMAIL PROTECTED] wrote: I'm 45 Is this what it's like to get old? I don't remember. Braggart. Whil (who is also heading out for an hour ride. Same route, every day, but with dementia setting in, it's like a brand new ride every day...)

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Kenneth Kixmoeller/fh
On Jun 11, 2007, at 3:12 PM, Matthew Jarvis wrote: I'm 45 Is this what it's like to get old? Gee, I don't know. I'm only 39 (well, OK: 39[L])! I've been feeling a lot like that, too. Whil has posted similar notes. Trying to start over in new languages and new platforms is harder than

Re: [test]

2007-06-11 Thread aj
Thanks. I didn't realize that i had been unsubscribed ___ 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 Searchable

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Ted Roche
On 6/11/07, Matthew Jarvis [EMAIL PROTECTED] wrote: I'm just feeling like I'm getting dumber all the time... Maybe you're just appreciating more how much there is to know. That could be considered wisdom. in addition to that my stamina for sitting here working with computers for more than 9

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread MB Software Solutions
Kenneth Kixmoeller/fh wrote: Trying to start over in new languages and new platforms is harder than I remember. I make lots of dumb errors -- then I can't see them. CRS syndrome rears its ugly head. Is it easier in any other career? fwiw, I'm feeling similar...yuck. -- Michael J.

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Kenneth Kixmoeller/fh
On Jun 11, 2007, at 5:15 PM, MB Software Solutions wrote: Is it easier in any other career? fwiw, I'm feeling similar...yuck. I don't know: Folks, whadaya think? Other technical careers are certainly hard: Doctors have to (or *should*) keep up with an incredible pace of change. Compared

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread MB Software Solutions
Kenneth Kixmoeller/fh wrote: I don't know: Folks, whadaya think? Other technical careers are certainly hard: Doctors have to (or *should*) keep up with an incredible pace of change. Compared to them, I'd say we have it easy. (And our failure consequences are not so dire.) Engineers?

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Mike Wohlrab
IMHO, everyone has it hard, just depends on whos view you look at it from. From someone that's non-technical, they say that we are geniuses because we have to keep up with technology and new Operating Systems, or hardware/ software, virus cleaners, etcetera. Look at it from someone who is not a

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Jeff Johnson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kenneth Kixmoeller/fh Sent: Monday, June 11, 2007 4:01 PM To: [EMAIL PROTECTED] Subject: Re: [NF] Is anyone else here getting dumber like me? On Jun 11, 2007, at 5:15 PM, MB Software Solutions

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread john harvey
I think if you are in a field that you are passionate about, it's not hard, it's a quest! John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Wohlrab Sent: Monday, June 11, 2007 6:21 PM To: profox@leafe.com Subject: RE: [NF] Is anyone else here

RE: Serial Communication

2007-06-11 Thread Scott Ramey
There are docs for the Transcell MP-20 at http://www.transcell.net/english/downloads/userguide/43v000au.pdf. Regards, Scott Ramey BDS Software -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Hill Sent: Monday, June 11, 2007 11:34 AM To:

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Scott Ramey
I'd comment but right now I'm flummoxed - what was it I came to this newsgroup for??? Regards, Scott Ramey BDS Software -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Jarvis Sent: Monday, June 11, 2007 1:13 PM To: profox@leafe.com

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Ed Leafe
On Jun 11, 2007, at 4:12 PM, Matthew Jarvis wrote: I'm just feeling like I'm getting dumber all the time... in addition to that my stamina for sitting here working with computers for more than 9 hours is gone (that might actually be a good thing)... I eat reasonably well, exercise

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Ed Leafe
On Jun 11, 2007, at 8:57 PM, Jeff Johnson wrote: I mention Ted and Kevin because they are working with Linux. I am finding Python to be a lot like FoxPro. FoxPro back in 1991 could do more than anything out there. That is Python now in my opinion. I was constantly learning new

Re: [OT]Announcement from Apple

2007-06-11 Thread Ricardo Aráoz
Michael Madigan wrote: What we really need is a chip to inplant in their brain to make them STFU. LOL They might even develop one for men. Then, you'd run out of excuses. LOL --- Derek Kalweit [EMAIL PROTECTED] wrote: Apple Computer announced today that it has developed a

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Ricardo Aráoz
Michael Madigan wrote: I'm sure he believes the Jews were partly responsible for the Holocaust. Just as much as Iraqis are responsible for US invasion. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

[NF] Jobs jabs Windows

2007-06-11 Thread Ed Leafe
At today's keynote at the Apple World Wide Developer's Conference, Steve Jobs said regarding Leopard, the next OS X release: We've got a basic version, which is going to cost $129. We've got a Premium version, which is gonna cost $129. We've got a business version, $129. We've got

RE: [NF] Jobs jabs Windows

2007-06-11 Thread Michael Madigan
I'm not sure I agree with the Windows marketing plan. I can't believe multiple versions, with all the confusion it creates, is good for the bottom line. --- Mike Wohlrab [EMAIL PROTECTED] wrote: And let me guess, the basic version is going to have everything the ultimate version has?

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Whil Hentzen (Pro*)
Matthew Jarvis wrote: I don't know - maybe it's the crazy nature of my work, or maybe just this environment, or whatever I'm just feeling like I'm getting dumber all the time... in addition to that my stamina for sitting here working with computers for more than 9 hours is gone (that

RE: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Bill Arnold
I'm sure he believes the Jews were partly responsible for the Holocaust. Sounds like the convicted rapist saying She was asking for it! On a serious note, I doubt Bill believes that. I do believe that's why there is no debate in this country on this matter: the holocaust shield

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Jeff Johnson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ed Leafe Sent: Monday, June 11, 2007 6:08 PM To: [EMAIL PROTECTED] Subject: Re: [NF] Is anyone else here getting dumber like me? On Jun 11, 2007, at 8:57 PM, Jeff Johnson wrote: I mention Ted and

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Mike Wohlrab
Jeff Jeff Johnson [EMAIL PROTECTED] 623-582-0323 Fax 623-869-0675 SNIPbut unless there is a viable server version, major Microsoft customers will not be interested. SNIP Viable, I don't know, but M$ is releasing Windows code name Longhorn in 2008 or more effectively called, windows server

RE: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Michael Madigan
See, I told you. --- Bill Arnold [EMAIL PROTECTED] wrote: I'm sure he believes the Jews were partly responsible for the Holocaust. Sounds like the convicted rapist saying She was asking for it! On a serious note, I doubt Bill believes that. I do believe that's

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread john harvey
Finally, another story, this time from The Cowboys, a western where John Wayne, Roscoe Lee Brown, and a bunch of 8 to 12 year boys have been tasked to drive cattle when the original hands abandon them. At one point, the crew runs into a brothel. The ladies petition Brown for a stop, and he

Re: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread MB Software Solutions
Jeff Johnson wrote: snipped How do I do it? Divorce and marrying a babe worked for me!!! Well, I'll take that as hope for me yet! (I'm going through a terrible divorce now.) To be perfectly honest, there is nothing more important to me than a good night's sleep and getting away from it

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread MB Software Solutions General Account
Bill Arnold wrote: I'm sure he believes the Jews were partly responsible for the Holocaust. Sounds like the convicted rapist saying She was asking for it! On a serious note, I doubt Bill believes that. I do believe that's why there is no debate in this country on this

RE: [NF] Is anyone else here getting dumber like me?

2007-06-11 Thread Jeff Johnson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Whil Hentzen (Pro*) Sent: Monday, June 11, 2007 7:54 PM To: [EMAIL PROTECTED] Subject: Re: [NF] Is anyone else here getting dumber like me? How do I do it? Divorce and marrying a babe worked for

RE: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Bill Arnold
I'm sure he believes the Jews were partly responsible for the Holocaust. Sounds like the convicted rapist saying She was asking for it! On a serious note, I doubt Bill believes that. I do believe that's why there is no debate in this country on this

Re: [OT] Richardson/Lieberman ticket

2007-06-11 Thread Pete Theisen
On Monday 11 June 2007 07:35, MB Software Solutions General Account wrote: the greatest threat to us, it's Israel and it's tentacles in Washington. Hi Bill! So alright already, we know you hate Jews. You want that all the Jews be killed. That has been tried already, several times.

Re: [OT] Crazy Person Vs Moral Pillar Of Society

2007-06-11 Thread Pete Theisen
On Monday 11 June 2007 08:31, Helio W. wrote: http://www.myconfinedspace.com/wp-content/uploads/2007/05/idt20070116.png Hi Helio! If Sonny Bono had risen from the dead after three days in his grave and appeared to many people this would be a better metaphor. -- Regards, Pete

[NF] I just bought 3 computers, all with XP for fear of Vista

2007-06-11 Thread Michael Madigan
Now that it's been out a while, what is everyone's impression of Vista? I've been hearing that it's buggy, but how are the list members finding it? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: [NF] I just bought 3 computers, all with XP for fear of Vista

2007-06-11 Thread Adam Buckland
Why not get 3 Vista boxes and use the downgrade rights, then you'd have XP, with Vista available when you want it. Vista is OK and may be recommendable in Q4 when the first Service Pack is due. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael