Re: Run/! command failed in foxpro 2.5

2012-04-11 Thread Michael Madigan
For foxpro for windows 2.5, is there a maximum length of the line that follows the run command?   my command isn't approaching 254 From: Tracy Pearson tr...@powerchurch.com To: profox@leafe.com Sent: Tuesday, April 10, 2012 11:08 PM Subject: Re: Run/! command

RE: Data Environment

2012-04-11 Thread Dave Crozier
Thanks Rick, I'll take a look Dave -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Rick Schummer Sent: 10 April 2012 20:43 To: profox@leafe.com Subject: RE: Data Environment Hi Dave, Does anyone know of an easy way to extract the data

Re: Run/! command failed in foxpro 2.5

2012-04-11 Thread Gianni Turri
Hi Michael, sure that when you use real data your line doesn't reach 254 character lenght? Anyway, if I remember correctly, I deleted foxrun.pif, it was necessary only in Windows 95 / 98 / Me. So close Foxpro, delete foxrun.pif or move it in a folder out of reach of Foxpro and then try again.

Re: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread Ricardo Araoz
El 10/04/12 22:21, Ken Dibble escribió: A huge thank you from me goes out to him (Ed Leafe) anyway. +1 +1, again. +1 ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this

Re: Run/! command failed in foxpro 2.5

2012-04-11 Thread Michael Madigan
Thank you.   Since i only need to change the subject and the body, I created a batch file that allows for 2 parameters, the subject and the message, and that works. I will try renaming the pif and see if that helps.   From: Gianni Turri gianni...@gmail.com

Re: Brain fart moment ...

2012-04-11 Thread Peter Cushing
Hi Dave, I don't normally code grids like that either but got this code to work, although not figured out how to set the caption yet. Will post another one if I crack it. Cheers, Peter ** * Start Code * PUBLIC oform1 oform1=NEWOBJECT(clsform) oform1.Show RETURN define class

Re: Brain fart moment ...

2012-04-11 Thread Peter Cushing
Hi Dave, Got this to work: ** * Start Code * PUBLIC oform1 oform1=NEWOBJECT(clsform) oform1.Show RETURN define class clsForm as Form Datasession=2 Top=12 Left=12 Height=332 Width=790 Caption = This is my form Name=Form1 add object grdGrid1 as myGrid with ;

Re: Brain fart moment ...

2012-04-11 Thread Ajit Abraham
Hi Dave, If your design and logic allows you to manipulate the header outside the class, then ... oform1=NEWOBJECT(clsform) oform1.grDGRID1.colUMN1.header1.Caption=test oform1.Show RETURN _Ajit Abraham On 11/04/2012 13:18, Dave Crozier wrote: OK, I'm having

Re: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Ajit Abraham
Same here ! :) Thanks _Ajit Abraham On 11/04/2012 13:10, Adam Buckland wrote: Shrunk mine from 13.5GB to 7.5GB... cheers ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version

Fwd: Re: Brain fart moment ...

2012-04-11 Thread Ajit Abraham
or.. ** * Start Code * PUBLIC oform1 oform1=NEWOBJECT(clsform) oform1.Show RETURN define class clsForm as Form Datasession=2 Top=12 Left=12 Height=332 Width=790 Caption = This is my form Name=Form1 PROCEDURE init

Re: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Michael Madigan
Do you see an increase in speed?  From: Ajit Abraham fox...@ua-group.com To: profox@leafe.com Sent: Wednesday, April 11, 2012 7:15 AM Subject: Re: [NF] Shrink Huge Windows\winsxs folder Same here ! :) Thanks _Ajit Abraham On 11/04/2012 13:10, Adam

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Michael Madigan
The last time I looked, they weren't any cheaper than regular laptops, so I didn't think there really was a point to get one.    From: Ted Roche tedro...@gmail.com To: profox@leafe.com Sent: Wednesday, April 11, 2012 7:41 AM Subject: [NF] Chrome OS introduces

Re: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Ajit Abraham
I did not experience much difference in speed on my i5-2.4Ghz-4GB laptop. But it recovered 7GB of precious C drive space. _Ajit Abraham On 11/04/2012 14:55, Michael Madigan wrote: Do you see an increase in speed? ___ Post Messages to:

RE: Brain fart moment ...

2012-04-11 Thread Dave Crozier
Peter, I know that works... I did the same i.e subclassing the grid. However I have just generated a form visually with a grid having 3 columns and looked at the generated code from the ClassBrowser and it does the add object. in exactly the same way as I have and that code doesn't

RE: Brain fart moment ...

2012-04-11 Thread Dave Crozier
Ajit, thanks for the reply, I can't really change the logic that I want to use ... i.e adding the column header in the form declaration for reasons I can't go into, but thanks anyway. I'm just confused as to why the syntax for the add object.. column header doesn't work. If you have a help

RE: Brain fart moment ...

2012-04-11 Thread John Harvey
I believe the help file is online at msdn. You might try http://msdn.microsoft.com/en-us/library/74zkxe2k.aspx John Harvey -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Dave Crozier Sent: Wednesday, April 11, 2012 7:36 AM To: ProFox

Re: Brain fart moment ...

2012-04-11 Thread Ajit Abraham
Dave, Without subclassing grid... ** * Start Code * PUBLIC oform1 oform1=NEWOBJECT(clsform) oform1.Show RETURN define class clsForm as Form Datasession=2 Top=12 Left=12 Height=332 Width=790 Caption = This is my form Name=Form1 PROCEDURE init

Re: I'm having issues with access and assign - I should never program late at night! - SOLVED

2012-04-11 Thread Michael Savage
This am it was obvious... I was returning from the routines prior to setting the colour! DUH... insert expletives here (@#$$##@#@) I'm sorry if I wasted anybodies time on this one. Next time I'll sleep on it first! Thanks to all who responded. Mike On 11/04/2012 1:28 AM, Jean MAURICE wrote:

RE: I'm having issues with access and assign - I should never program late at night! - SOLVED

2012-04-11 Thread Alan Lukachko
Hey Mike, You didn't waste anybody's time. I think we all may have learned a lesson here. It's just that everyone didn't necessarily learn the same lesson. This am it was obvious... I was returning from the routines prior to setting the colour! DUH... insert expletives here (@#$$##@#@) I'm

Re: Brain fart moment ...

2012-04-11 Thread Peter Cushing
Hi Dave, Looked around for some code in the archives and found some you sent me late last year (see link below) that looks like it is generated by a builder and that comes up with the same syntax error on the add object line. Does it in VFP7 and 9, so don't think your VFP is screwed but

RE: Brain fart moment ...

2012-04-11 Thread Dave Crozier
Peter, Yes, that code was created from the class browser view code option. This is damned strange and I accessed the VFP on line help (Thanks John H) and the code syntax would seem to be correct... but it errors from a syntax error ... but WHY?? Very weird. Thanks to all for the input and if

RE: Brain fart moment ...

2012-04-11 Thread Dave Crozier
Solved. it would seem that there IS a bug in the view code option in the class browser in that it generates code that Doesn't work as far as Grid headers are concerned. The class browser is incidentally where I took my sample code from in the absence of the help file) and that you have to

RE: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Kurt Wendt
I'd be curious to know if this also works for Vista?!? -K- -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Vincent Teachout Sent: Tuesday, April 10, 2012 8:07 PM To: profoxt...@leafe.com Subject: Re: [NF] Shrink Huge Windows\winsxs

Re: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread MB Software Solutions, LLC
On 4/11/2012 1:41 AM, Bill Anderson wrote: Steven, About 10 years ago there were at least a couple VFP people who got .NET MVP status (usually C#) that only talked about doing .NET work... OUCHpayola??? -- Mike Babcock, MCP MB Software Solutions, LLC President, Chief Software

Re: ProFox Digest, Vol 108, Issue 46

2012-04-11 Thread Garry Bettle
On 11 April 2012 02:59, profox-requ...@leafe.com wrote: Message: 2 Date: Tue, 10 Apr 2012 17:26:54 -0400 From: Tracy Pearson Garry, Is that code missing the first file in the Zip? Tracy Pearson PowerChurch Software Doh! You're correct Tracy. Many thanks! Tested with a zip file with

Re: Brain fart moment ...

2012-04-11 Thread MB Software Solutions, LLC
On 4/11/2012 8:33 AM, Dave Crozier wrote: Peter, I know that works... I did the same i.e subclassing the grid. However I have just generated a form visually with a grid having 3 columns and looked at the generated code from the ClassBrowser and it does the add object. in exactly the

RE: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Dave Crozier
Kurt, Only with SP1 and later. Dave -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Kurt Wendt Sent: 11 April 2012 15:04 To: profox@leafe.com Subject: RE: [NF] Shrink Huge Windows\winsxs folder I'd be curious to know if this also works

RE: Brain fart moment ...

2012-04-11 Thread Dave Crozier
Mike, Yes, the code generator doesn't work on nested classes, which a column effectively is. I must have dreamt that the code worked! Dave -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of MB Software Solutions, LLC Sent: 11 April 2012

RE: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Dave Crozier
The syntax looks a little different though... http://technet.microsoft.com/en-us/library/dd367838.aspx Dave -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Kurt Wendt Sent: 11 April 2012 15:04 To: profox@leafe.com Subject: RE: [NF]

RE: List files in a Zip with vfpcompression.fll

2012-04-11 Thread Garry Bettle
On 11 April 2012 02:59, profox-requ...@leafe.com wrote: Message: 3 Date: Tue, 10 Apr 2012 16:30:59 -0500 From: Jerry Foote Hi guys is does the tool vfpcompression.fll unzip any zip. Thanks Jerry Hi Jerry, I don't know. It's free, so download it and have a go. Cheers, Garry ---

RE: List files in a Zip with vfpcompression.fll (Tracy Pearson)

2012-04-11 Thread Garry Bettle
Grrr ... and now with added Subject line! G. -- Forwarded message -- From: Garry Bettle garry.bet...@gmail.com Date: 11 April 2012 16:22 Subject: Re: ProFox Digest, Vol 108, Issue 46 To: profox@leafe.com On 11 April 2012 02:59, profox-requ...@leafe.com wrote: Message: 2

Re: Brain fart moment ...

2012-04-11 Thread Paul McNett
On 4/11/12 7:22 AM, MB Software Solutions, LLC wrote: On 4/11/2012 8:33 AM, Dave Crozier wrote: Peter, I know that works... I did the same i.e subclassing the grid. However I have just generated a form visually with a grid having 3 columns and looked at the generated code from the

Re: [NF] HandlerPadARM.dll

2012-04-11 Thread Eurico Chagas Filho
Ken You could export her profile, see if everything goes ok and try to import, sometimes this is all what takes. E. I could do this but I've already eliminated the obvious locations, including the startup menu, everything that runs in msconfig, and everything called by run, runonce, and

RE: List files in a Zip with vfpcompression.fll (Tracy Pearson)

2012-04-11 Thread Tracy Pearson
Garry Bettle wrote on 2012-04-11: Grrr ... and now with added Subject line! G. -- Forwarded message -- From: Garry Bettle garry.bet...@gmail.com Date: 11 April 2012 16:22 Subject: Re: ProFox Digest, Vol 108, Issue 46 To: profox@leafe.com On 11 April 2012

Windows 8 beta and VFP9 SP2

2012-04-11 Thread kamcginnis
Just a comment about compatibility with Windows 8? Our application is written in VFP9 SP2.We are using Inno Setup for our installer. Everything works fine with no changes. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Stephen Russell
On Wed, Apr 11, 2012 at 6:41 AM, Ted Roche tedro...@gmail.com wrote: Chrome OS introduces Aura window manager http://www.geek.com/articles/news/chrome-os-introduces-aura-window-manager-20120410/ So, a Chromebook running Chrome OS has a browser, a Gmail client, a photo client, Google Docs, a

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Michael Madigan
Shockwave also crashes my chrome a lot.   Is that the same thing as flash or are they separate?  From: Stephen Russell srussell...@gmail.com To: ProFox Email List profox@leafe.com Sent: Wednesday, April 11, 2012 12:13 PM Subject: Re: [NF] Chrome OS introduces

Re: [NF] Shrink Huge Windows\winsxs folder

2012-04-11 Thread Dan Covill
I ran this thing yesterday. Before: 10.6 GB, 56,438 files, 14,339 folders (!!) After:6.7 GB, 43,282 files, 10,720 folders Yes, that's an improvement, but what about the rest of that crap? BTW, the /SpSuperseded option is not referenced in the program's /? help. Dan On 04/10/12 15:38,

[OT] Problem with ProFox?

2012-04-11 Thread Dan Covill
I've just gone through this morning's 40+ ProFox posts, and noticed something important missing. There is not a single post from Pete Theisen titled [OT] Obama Is something wrong with the Server? Can it be fixed before my 'Delete' key gets rusty? Dan Covill

Re: [OT] Problem with ProFox?

2012-04-11 Thread Jean Laeremans
Nope , they're all [OT] Bammer ... now. A+ jml ___ 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: [OT] Problem with ProFox?

2012-04-11 Thread Ken Kixmoeller (ProFox)
On Wed, Apr 11, 2012 at 11:41 AM, Dan Covill dcov...@san.rr.com wrote: There is not a single post from Pete Theisen titled [OT] Obama  Is something wrong with the Server?  Can it be fixed before my 'Delete' key gets rusty? I guess that shows that there may be a God after all. Ken

RE: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Adam Buckland
Hi Mike, I had the same problem and was about to remove chrome from my sons' notebooks when I discovered that if you disable the built in flash unit and download the external plugin... it works Enter about:plugins on the address bar and disable the internal that has local\google\chrome in

[NF] USA vs. Apple the book publishers

2012-04-11 Thread MB Software Solutions, LLC
http://docs.justia.com/cases/federal/district-courts/new-york/nysdce/1:2012cv02826/394628/1/ for Conspiracy to fix prices for e-books ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free

Re: Windows 8 beta and VFP9 SP2

2012-04-11 Thread Alan Bourke
On Wed, Apr 11, 2012, at 09:13 AM, kamcgin...@gmail.com wrote: Just a comment about compatibility with Windows 8? Our application is written in VFP9 SP2.We are using Inno Setup for our installer. Everything works fine with no changes. I had a quick test of ours and it looked OK too.

[NF] Question about MS SQL Server backups

2012-04-11 Thread M Jarvis
I'm a bit rusty... working on doing a backup and cleaning up some disk space. If I have a backup of the DB and the Transaction log from 2/14/2011, and I just did a DB and Transaction log back today, since I have the new DB and TRN I can safely delete the 2/14/2011 version? i.e. I'm covered since

Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread Malcolm Greene
I'm working in a locked down XP environment that will not allow me to install 3rd party apps or utilities. I'm looking for a built-in XP utility or cmd shell command that will provide me with the most detailed directory listing possible. The DIR command is limited and I'm looking for a way to get

Re: [NF] Question about MS SQL Server backups

2012-04-11 Thread Stephen Russell
On Wed, Apr 11, 2012 at 1:12 PM, M Jarvis brewda...@gmail.com wrote: I'm a bit rusty... working on doing a backup and cleaning up some disk space. If I have a backup of the DB and the Transaction log from 2/14/2011, and I just did a DB and Transaction log back today, since I have the new DB

Re: Run/! command failed in foxpro 2.5

2012-04-11 Thread Christof Wollenhaupt
If I use the line run /n N:\MAILSEND\mailsend1.16 -v -smtp plus.smtp.mail.yahoo.com -port 587 -t u...@example.com -f u...@example.com -sub this is a test -M this is the body -auth -user u...@example.com -pass password. It fails with the Run/! command failed The EXE name isn't

Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread M Jarvis
will it run VB scripts? If so look into FileSystemObject and it can retrieve quite a bit of info about files. I can send you an example piece of code to get you started and you can just add the the attributes you want. -- Matt Jarvis Eugene, Oregon USA

Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread Malcolm Greene
Thanks Matt! - Original message - From: M Jarvis brewda...@gmail.com To: profoxt...@leafe.com Subject: Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities Date: Wed, 11 Apr 2012 12:59:42 -0700 will it run VB

[NF]: Check this webapp making program

2012-04-11 Thread Eurico Chagas Filho
http://www.meteor.com/main E. --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html --- ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: [NF]: Check this webapp making program

2012-04-11 Thread Allen
JavaScript ? It's now a language ? I bet it's as slow as hell Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Eurico Chagas Filho Sent: 11 April 2012 22:09 To: profoxt...@leafe.com Subject: [NF]: Check this webapp making program

Re: [NF]: Check this webapp making program

2012-04-11 Thread Stephen Russell
On Wed, Apr 11, 2012 at 3:23 PM, Allen pro...@gatwicksoftware.com wrote: JavaScript ? It's now a language ? I bet it's as slow as hell - Not sure why you would say that it would be slow. -- Stephen Russell 901.246-0159 cell ___ Post

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Stephen Russell
On Wed, Apr 11, 2012 at 12:38 PM, Adam Buckland adam.buckl...@apac.co.uk wrote: Hi Mike, I had the same problem and was about to remove chrome from my sons' notebooks when I discovered that if you disable the built in flash unit and download the external plugin...  it works Enter

Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread Paul McNett
On 4/11/12 12:25 PM, Malcolm Greene wrote: I'm working in a locked down XP environment that will not allow me to install 3rd party apps or utilities. I'm looking for a built-in XP utility or cmd shell command that will provide me with the most detailed directory listing possible. The DIR

Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread Malcolm Greene
Let's you see how to interact with FileSystemObject. Thanks Matt!! Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread Malcolm Greene
Thanks Paul! (unfortunately I'm on a totally locked down workstation with nothing but a browser, MS Office, and anti-virus) ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of

Re: Re: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread AndyD
*I agree -* ... I seem to remember he was nominated before but 'some' people were upset by something he did - - related to trying to run Fox on 'another' OS perhaps? AndyD 8-)? On 10/04/2012 13:31, Jeff Johnson wrote: snip FoxPro lives on in ProFox and I - for one - think Ed should be

Re: Expanded dir listing info from XP command line using default Windows/cmd shell capabilities vs. 3rd party utilities

2012-04-11 Thread Ted Roche
Any chance you've got powershell installed? (File, Run Powershell) A google of listing directories with powershell should give you some ideas... On Wed, Apr 11, 2012 at 4:56 PM, Malcolm Greene pro...@bdurham.com wrote: Thanks Paul! (unfortunately I'm on a totally locked down workstation with

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Ken Kixmoeller (ProFox)
On Wed, Apr 11, 2012 at 3:37 PM, Stephen Russell srussell...@gmail.com wrote: Loosing belief in chrome more and more. So Chrome is like a loose woman? Or you are? I lose your ideas in your loose grammar g Ken ___ Post Messages to:

Re: Data Environment

2012-04-11 Thread AndyD
Interesting question - does the DE actually exist in [source] code? I suppose it may do. I always thought the DE was a very unappreciated resource - not strictly OOP enough perhaps? AndyD 8-)₹ On 10/04/2012 15:38, Dave Crozier wrote: Does anyone know of an easy way to extract the data

Re: [OT] Problem with ProFox?

2012-04-11 Thread Michael Madigan
After Nov, you won't have Barack Obama to push around anymore.   From: Ken Kixmoeller (ProFox) foxh...@information-architecture.com To: ProFox Email List profox@leafe.com Sent: Wednesday, April 11, 2012 12:47 PM Subject: Re: [OT] Problem with ProFox? On Wed,

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Ted Roche
On Wed, Apr 11, 2012 at 5:10 PM, Ken Kixmoeller (ProFox) foxh...@information-architecture.com wrote: So Chrome is like a loose woman? Or you are? I lose your ideas in your loose grammar g Oh, I think you're fiting a loosing baddle their, my frend. Spellig has leff the internet. And

RE: [NF]: Check this webapp making program

2012-04-11 Thread Allen
Javascript not slow? -Original Message- - Not sure why you would say that it would be slow. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Ken Kixmoeller (ProFox)
On Wed, Apr 11, 2012 at 4:18 PM, Ted Roche tedro...@gmail.com wrote: Oh, I think you're fiting a loosing baddle their, my frend. Spellig has leff the internet. And Stephen was one of the first casualties. casual is right (rite?). Or is it causal? K

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread M Jarvis
And Stephen was one of the first casualties. Tooshay! -- Matt Jarvis Eugene, Oregon USA ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Michael Madigan
There loosing it.   From: Ken Kixmoeller (ProFox) foxh...@information-architecture.com To: ProFox Email List profox@leafe.com Sent: Wednesday, April 11, 2012 5:10 PM Subject: Re: [NF] Chrome OS introduces Aura window manager On Wed, Apr 11, 2012 at 3:37 PM,

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Michael Madigan
Leland and Stephen share a brain.    From: Ted Roche tedro...@gmail.com To: profox@leafe.com Sent: Wednesday, April 11, 2012 5:18 PM Subject: Re: [NF] Chrome OS introduces Aura window manager On Wed, Apr 11, 2012 at 5:10 PM, Ken Kixmoeller (ProFox)

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Michael Madigan
I remember when someone wanted to say goodbye and wrote, chow.   From: M Jarvis brewda...@gmail.com To: profox@leafe.com Sent: Wednesday, April 11, 2012 5:36 PM Subject: Re: [NF] Chrome OS introduces Aura window manager And Stephen was one of the first

Re: [NF] USA vs. Apple the book publishers

2012-04-11 Thread Ricardo Araoz
El 11/04/12 14:50, MB Software Solutions, LLC escribió: http://docs.justia.com/cases/federal/district-courts/new-york/nysdce/1:2012cv02826/394628/1/ for Conspiracy to fix prices for e-books And me thinking you had a free market and the state didn't meddle in private affairs. hehehe

Re: [OT] Problem with ProFox?

2012-04-11 Thread Ricardo Araoz
El 11/04/12 13:47, Ken Kixmoeller (ProFox) escribió: On Wed, Apr 11, 2012 at 11:41 AM, Dan Covill dcov...@san.rr.com wrote: There is not a single post from Pete Theisen titled [OT] Obama Is something wrong with the Server? Can it be fixed before my 'Delete' key gets rusty? I guess

Re: [OT] Problem with ProFox?

2012-04-11 Thread Michael Madigan
You liberals are all the same, wishing someone to die that you don't agree with.    From: Ricardo Araoz ricar...@gmail.com To: ProFox Email List profox@leafe.com Sent: Wednesday, April 11, 2012 6:37 PM Subject: Re: [OT] Problem with ProFox? El 11/04/12

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Leland Jackson
On 04/11/2012 04:50 PM, Michael Madigan wrote: Leland and Stephen share a brain. I can't share. I don't have any to spare. LOL Regards, LelandJ From: Ted Rochetedro...@gmail.com To: profox@leafe.com Sent: Wednesday, April 11, 2012 5:18 PM

Re: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread Michael Madigan
Is this an official Microsoft award or a third-party award?  From: MB Software Solutions, LLC mbsoftwaresoluti...@mbsoftwaresolutions.com To: ProFox Email List profox@leafe.com Sent: Wednesday, April 11, 2012 5:58 PM Subject: Re: 2012 FoxPro Lifetime

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Ken Dibble
Spellig has leff the internet. Torie or Aaron? Yes, I know... Ken Dibble www.stic-cil.org ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread MB Software Solutions, LLC
On 4/11/2012 8:07 PM, Michael Madigan wrote: Is this an official Microsoft award or a third-party award? M$ has NOTHING to do with it, afaik. -- Mike Babcock, MCP MB Software Solutions, LLC President, Chief Software Architect http://mbsoftwaresolutions.com http://fabmate.com

Re: [OT] Problem with ProFox?

2012-04-11 Thread Ricardo Araoz
El 11/04/12 20:19, Michael Madigan escribió: You liberals are all the same, wishing someone to die that you don't agree with. Don't get me wrong. Has nothing to do with politics. It's personal. I just believe the world would be a better world if the wanker were to die, painfully would be

Re: [NF] Chrome OS introduces Aura window manager

2012-04-11 Thread Michael Oke, II
Point being? Michael Oke, II 661-349-6221 Contents of this and all messages are intended for their designated recipient. On Apr 11, 2012, at 2:52 PM, Michael Madigan mmadi10...@yahoo.com wrote: I remember when someone wanted to say goodbye and wrote, chow.

Re: [OT] Problem with ProFox?

2012-04-11 Thread Pete Theisen
Dan Covill wrote: I've just gone through this morning's 40+ ProFox posts, and noticed something important missing. There is not a single post from Pete Theisen titled [OT] Obama Is something wrong with the Server? Can it be fixed before my 'Delete' key gets rusty? Hi Dan, My

RE: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread Rick Schummer
Is this an official Microsoft award or a third-party award? Actually Ken Levy (while at Microsoft) started it with Whil Hentzen, Rick Strahl and Doug Hennig. Today the community has taken it over since the Microsoft Fox Team is absent. All the details are here:

Re: 2012 FoxPro Lifetime Achievement Award Committee

2012-04-11 Thread MB Software Solutions, LLC
On 4/12/2012 12:19 AM, Rick Schummer wrote: Is this an official Microsoft award or a third-party award? Actually Ken Levy (while at Microsoft) started it with Whil Hentzen, Rick Strahl and Doug Hennig. Today the community has taken it over since the Microsoft Fox Team is absent. All the