RE: [OT] Weiner mystery solved

2011-06-09 Thread Adam Buckland
Well at least people know he's posting them and can't be blackmailed... having a dick picture isn't really a clearance issue... unless no one else know's he's got a dick! -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Michael Madigan

RE: [OT] Weiner mystery solved

2011-06-09 Thread Michael Madigan
He's demonstrated that he's unstable and mental illness is enough to lose a clearance. --- On Thu, 6/9/11, Adam Buckland adam.buckl...@eurohill.com wrote: From: Adam Buckland adam.buckl...@eurohill.com Subject: RE: [OT] Weiner mystery solved To: ProFox Email List profox@leafe.com Date:

RE: [OT] Weiner mystery solved

2011-06-09 Thread Adam Buckland
I agree he should loose all clearance and his seat.. not for showing off his dick as you alluded, but for lying and trying all excuses to hide it (the truth not his dick!). It's like being gay, sleeping with hookers etc aren't reasons not to have security clearance... it's only when you they

RE: [OT] Weiner mystery solved

2011-06-09 Thread Michael Madigan
Correct. --- On Thu, 6/9/11, Adam Buckland adam.buckl...@eurohill.com wrote: From: Adam Buckland adam.buckl...@eurohill.com Subject: RE: [OT] Weiner mystery solved To: ProFox Email List profox@leafe.com Date: Thursday, June 9, 2011, 4:18 AM I agree he should loose all clearance and his

Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread MB Software Solutions, LLC
Add this code to prevent it from going over 2GB: *** mjb 06/09/2011 - added lnMax to prevent Vista and 7 from erroring lnMax = 1024**3*2-1 IF lnAvailableMem lnMax THEN lnAvailableMem = lnMax ENDIF *? lnAvailableMem SYS(3050, 1, lnAvailableMem) SYS(3050, 2, (lnAvailableMem/2) ) RETURN

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Paul McNett
On 6/9/11 11:02 AM, MB Software Solutions, LLC wrote: lnMax = 1024**3*2-1 IF lnAvailableMem lnMax THEN lnAvailableMem = lnMax ENDIF How's about: lnAvailableMem = max(1024**3*2-1, m.lnAvailableMem) Paul ___ Post Messages to:

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Stephen Russell
On Thu, Jun 9, 2011 at 1:21 PM, Paul McNett p...@ulmcnett.com wrote: On 6/9/11 11:02 AM, MB Software Solutions, LLC wrote: lnMax = 1024**3*2-1 IF lnAvailableMem  lnMax THEN       lnAvailableMem = lnMax ENDIF How's about: lnAvailableMem = max(1024**3*2-1, m.lnAvailableMem)

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Alan Bourke
Why would you want to be futzing with this in the first place ? On Thu, 09 Jun 2011 13:32 -0500, Stephen Russell srussell...@gmail.com wrote: On Thu, Jun 9, 2011 at 1:21 PM, Paul McNett p...@ulmcnett.com wrote: On 6/9/11 11:02 AM, MB Software Solutions, LLC wrote: lnMax = 1024**3*2-1 IF

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 2:32 PM, Stephen Russell wrote: On Thu, Jun 9, 2011 at 1:21 PM, Paul McNettp...@ulmcnett.com wrote: On 6/9/11 11:02 AM, MB Software Solutions, LLC wrote: lnMax = 1024**3*2-1 IF lnAvailableMemlnMax THEN lnAvailableMem = lnMax ENDIF How's about: lnAvailableMem =

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Ed Leafe
On Jun 9, 2011, at 2:02 PM, MB Software Solutions, LLC wrote: lnMax = 1024**3*2-1 Since this code is meant to be called frequently, it is better to set the actual value than force it to be recalculated every time, then add a comment for the derivation of the number. -- Ed Leafe

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Stephen Russell
On Thu, Jun 9, 2011 at 1:51 PM, MB Software Solutions, LLC mbsoftwaresoluti...@mbsoftwaresolutions.com wrote: On 6/9/2011 2:32 PM, Stephen Russell wrote: On Thu, Jun 9, 2011 at 1:21 PM, Paul McNettp...@ulmcnett.com  wrote: On 6/9/11 11:02 AM, MB Software Solutions, LLC wrote: lnMax =

[NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread Stephen Russell
You have to register to get it from M$. This is an article about it. http://www.bnet.com/blog/businesstips/fix-computers-devastated-by-malware-with-new-tool-from-microsoft/11543 -- Stephen Russell Unified Health Services 60 Germantown Court Suite 220 Cordova, TN 38018 Telephone: 888.510.2667

Re: [NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread Ed Leafe
On Jun 9, 2011, at 3:05 PM, Stephen Russell wrote: You have to register to get it from M$. This is an article about it. http://www.bnet.com/blog/businesstips/fix-computers-devastated-by-malware-with-new-tool-from-microsoft/11543 Or, without needing to register, you can fix computers

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Ed Leafe
On Jun 9, 2011, at 3:01 PM, Stephen Russell wrote: Back to my initial question. Will VFP act better if you double it's ram from 500 meg to 1 gig on a machine that packs a lot of ram to begin with? The purpose of SetMemory is to limit VFP to actual physical RAM, not Virtual Memory.

RE: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Rick Schummer
Add this code to prevent it from going over 2GB: Sure you need an upper limit, but this should be for low memory machines, not heavy duty workstations. Mac Rubel proved many years ago (and written up in FoxPro Advisor Magazine) through extensive testing that using more memory is not better.

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Michael Madigan
I worked for a company where one guy wrote a completely unintelligible program in foxpro. He had indexes and relations based on recno(), completely cryptic descriptions, and changed work areas back and forth rather than use the databasname.fieldname conventions.The poor bastards who owned

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 3:24 PM, Michael Madigan wrote: I worked for a company where one guy wrote a completely unintelligible program in foxpro. He had indexes and relations based on recno(), completely cryptic descriptions, and changed work areas back and forth rather than use the

Re: [NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 3:08 PM, Ed Leafe wrote: Or, without needing to register, you can fix computers devastated by malware with this: http://j.mp/lavybc (From Ed's link...) It works with your favourite apps and IE isn't one of them. lol -- Mike Babcock, MCP MB Software Solutions, LLC

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Stephen Russell
On Thu, Jun 9, 2011 at 2:24 PM, Michael Madigan mmadi10...@yahoo.com wrote: I worked for a company where one guy wrote a completely unintelligible program in foxpro.  He had indexes and relations based on recno(), completely cryptic descriptions, and changed work areas back and forth rather

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread Paul McNett
On 6/9/11 11:32 AM, Stephen Russell wrote: How's about: lnAvailableMem = max(1024**3*2-1, m.lnAvailableMem) --- How about min and not max? Very good! (Just seeing if you were awake, yeah that's it!) Paul ___ Post

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Michael Madigan
In his case I don't think it was lack of ethics, I think he's just insane. I consider myself a fairly good foxpro programmer and it was completely unintelligible to me. Not to mention that every report was hand written instead of using the report writer, and there were no compound indexes,

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Stephen Russell
On Thu, Jun 9, 2011 at 2:32 PM, MB Software Solutions, LLC mbsoftwaresoluti...@mbsoftwaresolutions.com wrote: On 6/9/2011 3:24 PM, Michael Madigan wrote: I worked for a company where one guy wrote a completely unintelligible program in foxpro.  He had indexes and relations based on recno(),

Re: Tip/code for fixing SetMemory issue on Vista/Win7 boxes where memory 2GB

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 3:18 PM, Rick Schummer wrote: Add this code to prevent it from going over 2GB: Sure you need an upper limit, but this should be for low memory machines, not heavy duty workstations. Mac Rubel proved many years ago (and written up in FoxPro Advisor Magazine) through extensive

Re: [NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread Ed Leafe
On Jun 9, 2011, at 3:34 PM, MB Software Solutions, LLC wrote: (From Ed's link...) It works with your favourite apps and IE isn't one of them. lol Do you know anyone who considers IE one of their favourite apps? -- Ed Leafe ___

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Michael Madigan
This actually just bit me in the ass this week. We have a program that is nearly 20 years old. In a SQL statment I have a line that should read Where Orig_princ - princ_paid + adj_princ50 but for how long, I don't know, it said Where Orig_princ-princ_paid_adj_princ50 So it was only

RE: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread John Harvey
He probably thought he didn't have time to sharpen the axe, he had trees to cut! John -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Michael Madigan Sent: Thursday, June 09, 2011 2:40 PM To: ProFox Email List Subject: Re: [NF] Great

RE: virtual servers

2011-06-09 Thread John Harvey
I am running windows 7 pro for development on a notebook and would love to be able to install a virtual server that runs inside 64 bit, Windows 7. So. I downloaded the almost 2 gig, four separate files for Virtual Windows Server 2003 R2, went through the install, then at around 2am saw the

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Paul Newton
I am just bemused by the fact that reports run faster when run overnight ,,, surely it would take just as long to run the reports whatever the time of day (unless network traffic is the issue ...) -Original Message- And because is was so poorly written, some reports had to be run

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Jerry Wolper
We have a program that is nearly 20 years old. In a SQL statment I have a line that should read Where Orig_princ - princ_paid + adj_princ50 but for how long, I don't know, it said Where Orig_princ-princ_paid_adj_princ50 ... Had I put in database name prefixes, the compiler

Re: [NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 3:47 PM, Ed Leafe wrote: On Jun 9, 2011, at 3:34 PM, MB Software Solutions, LLC wrote: (From Ed's link...) It works with your favourite apps and IE isn't one of them. lol Do you know anyone who considers IE one of their favourite apps? Bill Gates, Steve Ballmer, Bill

Re: [NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread Stephen Russell
On Thu, Jun 9, 2011 at 2:47 PM, Ed Leafe e...@leafe.com wrote: On Jun 9, 2011, at 3:34 PM, MB Software Solutions, LLC wrote: (From Ed's link...)   It works with your favourite apps  and IE isn't one of them.  lol        Do you know anyone who considers IE one of their favourite apps?

RE: virtual servers

2011-06-09 Thread Tracy Pearson
John Harvey wrote on 2011-06-09: I am running windows 7 pro for development on a notebook and would love to be able to install a virtual server that runs inside 64 bit, Windows 7. So. I downloaded the almost 2 gig, four separate files for Virtual Windows Server 2003 R2, went through

Re: [NF] fix-computers-devastated-by-malware-with-new-tool-from-microsoft

2011-06-09 Thread Ed Leafe
On Jun 9, 2011, at 4:42 PM, Stephen Russell wrote: Do you know anyone who considers IE one of their favourite apps? There are so many companies that have PCs locked down that IE is it. Or they are so cheap that they never upgraded their account with a vendor and an internal app

RE: virtual servers

2011-06-09 Thread John Harvey
Yeah, I installed HyperV 2008 Rs server, but it has to run as it's on os, not as a VM under Windows 7. I have a multi-boot menu, which I guess I may have to use, or else bite the bullet and get a copy of VM Ware. Thanks, John -Original Message- From: profox-boun...@leafe.com

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Jerry Wolper
I am just bemused by the fact that reports run faster when run overnight ,,, surely it would take just as long to run the reports whatever the time of day (unless network traffic is the issue ...) It's just the ability to start the process, leave, and have the result upon returning the next

RE: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread John Harvey
Is Bemused like amused by a factor of 2? -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Paul Newton Sent: Thursday, June 09, 2011 3:28 PM To: profox@leafe.com Subject: Re: [NF] Great presentation on commenting (or not commenting) your code

RE: virtual servers

2011-06-09 Thread Tracy Pearson
John Harvey wrote on 2011-06-09: Yeah, I installed HyperV 2008 Rs server, but it has to run as it's on os, not as a VM under Windows 7. I have a multi-boot menu, which I guess I may have to use, or else bite the bullet and get a copy of VM Ware. Thanks, John John, I

RE: virtual servers

2011-06-09 Thread John Harvey
Yeah, don't you just love the way MS changes stuff from one iteration to another, usually only so you have to work to find out where they buried it this time john -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Tracy Pearson Sent:

Re: virtual servers

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 6:01 PM, John Harvey wrote: Yeah, don't you just love the way MS changes stuff from one iteration to another, usually only so you have to work to find out where they buried it this time The exception was the Fox! :-) -- Mike Babcock, MCP MB Software Solutions, LLC

RE: virtual servers

2011-06-09 Thread John Harvey
Truly, an exceptional product, even after death! Lol John -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of MB Software Solutions, LLC Sent: Thursday, June 09, 2011 5:07 PM To: ProFox Email List Subject: Re: virtual servers On 6/9/2011 6:01

RE: [NF] Adobe updates

2011-06-09 Thread John Harvey
Who else thinks Adobe must be stealing data, since they send out updates every few days? I kill them. John ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

RE: [NF] Adobe updates

2011-06-09 Thread Jarvis, Matthew
Who else thinks Adobe must be stealing data, since they send out updates every few days? I kill them. John They've been especially annoying lately, haven't they Just found out you can (supposedly) disable them: Edit-Preferences-Updater- turn the bloody thing off Thanks,

Re: virtual servers

2011-06-09 Thread Paul Hill
On Thu, Jun 9, 2011 at 10:21 PM, John Harvey john.har...@shelbynet.com wrote: Yeah, I installed HyperV 2008 Rs server, but it has to run as it's on os, not as a VM under Windows 7. I  have a multi-boot menu, which I guess I may have to use, or else bite the bullet and get a copy of VM Ware.

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Michael Madigan
That's also possible, I've never referenced a field name with extra characters so I don't know if it works. --- On Thu, 6/9/11, Jerry Wolper jwol...@swanzoco.com wrote: From: Jerry Wolper jwol...@swanzoco.com Subject: Re: [NF] Great presentation on commenting (or not commenting) your code

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Michael Madigan
And the system was an old UNIX system so there was only one processor. Brutally-slow. --- On Thu, 6/9/11, Jerry Wolper jwol...@swanzoco.com wrote: From: Jerry Wolper jwol...@swanzoco.com Subject: Re: [NF] Great presentation on commenting (or not commenting) your code To: ProFox Email

RE: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread Michael Madigan
I understand, but writing reports by hand when you have a pretty good report writer is counter-productive. --- On Thu, 6/9/11, John Harvey john.har...@shelbynet.com wrote: From: John Harvey john.har...@shelbynet.com Subject: RE: [NF] Great presentation on commenting (or not commenting) your

Re: [NF] Great presentation on commenting (or not commenting) your code

2011-06-09 Thread MB Software Solutions, LLC
On 6/9/2011 7:30 PM, Michael Madigan wrote: I understand, but writing reports by hand when you have a pretty good report writer is counter-productive. and insane. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: