RE: How to disable Found Hardware Wizard ?.

2012-07-26 Thread Allen
Not totally correct. Codeplex has a processor splitter which you can send parts of the program to alternative cores. Al -Original Message- VFP is a single Process application. You will see no performance boost from the processor. You will see a performance boost from additional ram and

Re: How to disable Found Hardware Wizard ?.

2012-07-26 Thread Mike Copeland
It also seems like there would be some advantage to VFP not having to share the CPU (determined completely by the OS, of course.) In other words, the more cores, the better the chance that VFP will be able to crash right through its entire routine unimpeded by disk indexing or browser updates,

Re: How to disable Found Hardware Wizard ?.

2012-07-26 Thread Michael Madigan
That's what I was thinking too, but it would be a fractional improvement.    - Original Message - From: Mike Copeland m...@ggisoft.com To: profox@leafe.com Cc: Sent: Thursday, July 26, 2012 2:53 AM Subject: Re: How to disable Found Hardware Wizard ?. It also seems like there would be

Re: TEST

2012-07-26 Thread Man-wai Chang
Contact! Bearing unknown... :) On Thu, Jul 26, 2012 at 8:27 AM, 999888 supportforamlirel...@indigo.ie wrote: 1.27AM -- .~. Might, Courage, Vision. SINCERITY! / v \ 64-bit Ubuntu 9.10 (Linux kernel 2.6.39.3) /( _ )\ http://sites.google.com/site/changmw ^ ^ May the Force and farces be with you!

Re: Easiest way to count months in range?

2012-07-26 Thread Man-wai Chang
Ask the user what defines a month! It could be 30 days or gomonth(date, 1) or... You might want to code this as an option selectable by the user. On Thu, Jul 26, 2012 at 4:38 AM, MB Software Solutions, LLC mbsoftwaresoluti...@mbsoftwaresolutions.com wrote: Input is 2 dates...I need to count the

Re: VFP9 windows 8

2012-07-26 Thread Man-wai Chang
Your app should not touch anything into c:\windows\system32 and other system folders. On Wed, Jul 25, 2012 at 9:34 PM, Allen pro...@gatwicksoftware.com wrote: Well that was a surprise. Loaded a VFP exe on Windows 8 and it worked. Once. Then it says about not being able to open a dbf in

RE: VFP9 windows 8

2012-07-26 Thread Allen
It doesn't. But if you don't fill in the shortcut Start in it seems not to give that choice even though the full path to the exe is given. Once Start in is filled correctly the problem goes away. Al -Original Message- Your app should not touch anything into c:\windows\system32 and other

Re: VFP9 windows 8

2012-07-26 Thread Stephen Russell
On Thu, Jul 26, 2012 at 6:13 AM, Allen pro...@gatwicksoftware.com wrote: It doesn't. But if you don't fill in the shortcut Start in it seems not to give that choice even though the full path to the exe is given. Once Start in is filled correctly the problem goes away. Al -Original

Logo

2012-07-26 Thread Bryant Minard
What is the best way to store and print a logo on VFP9 report form? Bryant Minard Medford Software House 25 Ark Rd Medford, NJ 08055 Tel. (609) 654-5443Fax. (609) 654-5686 sa...@medfordsh.com --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body

Re: Logo

2012-07-26 Thread Jeff Johnson
On 07/26/2012 06:48 AM, Bryant Minard wrote: What is the best way to store and print a logo on VFP9 report form? Bryant Minard Medford Software House 25 Ark Rd Medford, NJ 08055 Tel. (609) 654-5443Fax. (609) 654-5686 sa...@medfordsh.com I do a filetostr() and save it in a memo

RE: Logo

2012-07-26 Thread Richard Kaye
Until your table/memo gets corrupted. :) Or simply put the image file in the same folder as your reports. Make sure you size/format it to the exact print dimensions as opposed to allowing VFP to size the image. -- rk -Original Message- From: profoxtech-boun...@leafe.com

RE: VFP9 windows 8

2012-07-26 Thread Allen
That's exactly what it still does even thought the full path is in the target Al -Original Message- I remember this happening way back in the 90s. I was trying to do a com app for reindexing SBT tables on the server instead of dragging them across the network. I knew what folder my

Re: Logo

2012-07-26 Thread Jeff Johnson
On 07/26/2012 07:23 AM, Richard Kaye wrote: Until your table/memo gets corrupted. :) Or simply put the image file in the same folder as your reports. Make sure you size/format it to the exact print dimensions as opposed to allowing VFP to size the image. -- rk -Original

RE: VFP9 windows 8

2012-07-26 Thread John Harvey
I think all exe's start in the windows\system32\ folder when they don't have a start in defined. That's why my first few lines of code navigate to the proper location before executing further. John -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On

Re: Logo

2012-07-26 Thread Bryant Minard
How do you reference the the jpg file on the report form? Bryant On Jul 26, 2012, at 10:23 AM, Richard Kaye wrote: Until your table/memo gets corrupted. :) Or simply put the image file in the same folder as your reports. Make sure you size/format it to the exact print dimensions as opposed

Re: Logo

2012-07-26 Thread Jeff Johnson
The picture control on the report has a fixed control source .\images\logo.jpg Prior to running the report I replace logo.jpg with the file I want to use from the memo field based on the customer. logo.jpg is excluded from the project. Actually, I load the logos in .jpgs when I open the

Re: Logo

2012-07-26 Thread MB Software Solutions, LLC
On 7/26/2012 11:24 AM, Jeff Johnson wrote: The picture control on the report has a fixed control source .\images\logo.jpg Prior to running the report I replace logo.jpg with the file I want to use from the memo field based on the customer. logo.jpg is excluded from the project. Actually, I

RE: Logo

2012-07-26 Thread Richard Kaye
Hey Jeff, No offense intended. In theory, you have potential performance differences between opening the table, locating the right row, grabbing the data from the memo and finally saving it back to disk. My suggestion is you can bypass all that by simply referring to the file that's already

RE: Logo

2012-07-26 Thread Richard Kaye
Hi Bryant, Try this topic in the VFP help file How to: Add Pictures to Reports -- rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Bryant Minard Sent: Thursday, July 26, 2012 11:11 AM To: profoxt...@leafe.com Subject: Re:

Re: Logo

2012-07-26 Thread Jeff Johnson
On 07/26/2012 08:26 AM, MB Software Solutions, LLC wrote: On 7/26/2012 11:24 AM, Jeff Johnson wrote: The picture control on the report has a fixed control source .\images\logo.jpg Prior to running the report I replace logo.jpg with the file I want to use from the memo field based on the

Re: Logo

2012-07-26 Thread Bryant Minard
This worked just fine. Thanks to all you guys for the help. Bryant Minard bry...@medfordsh.com On Jul 26, 2012, at 11:24 AM, Jeff Johnson wrote: The picture control on the report has a fixed control source .\images\logo.jpg Prior to running the report I replace logo.jpg with the file I

Re: Logo

2012-07-26 Thread Jeff Johnson
On 07/26/2012 08:28 AM, Richard Kaye wrote: Hey Jeff, No offense intended. In theory, you have potential performance differences between opening the table, locating the right row, grabbing the data from the memo and finally saving it back to disk. My suggestion is you can bypass all that

Re: Logo

2012-07-26 Thread Ed Leafe
On Jul 26, 2012, at 10:36 AM, Jeff Johnson wrote: No offense taken, it's just a good idea to mention that for the benefit of those newer to VFP. Is there anyone still using VFP who is new to VFP? ;-) -- Ed Leafe ___ Post

Re: Logo

2012-07-26 Thread Vincent Teachout
Richard Kaye wrote: Until your table/memo gets corrupted. :) + 1 ___ 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

RE: Logo

2012-07-26 Thread Kurt Wendt
Hey Ed - that's almost an OxyMoron - isn't it? :-) -K- -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Ed Leafe Sent: Thursday, July 26, 2012 11:38 AM On Jul 26, 2012, at 10:36 AM, Jeff Johnson wrote: No offense taken, it's

Re: Logo

2012-07-26 Thread Jeff Johnson
On 07/26/2012 08:38 AM, Ed Leafe wrote: On Jul 26, 2012, at 10:36 AM, Jeff Johnson wrote: No offense taken, it's just a good idea to mention that for the benefit of those newer to VFP. Is there anyone still using VFP who is new to VFP? ;-) -- Ed Leafe Yeah, me! I've only

RE: Logo

2012-07-26 Thread Richard Kaye
Good to know. I wasn't sure and if I'm going to be offensive, I want it to be explicit... g The performance comment was more theoretical in nature. I expect that in practical terms it's nil. But as Ted always says, you have to test these things in the proper environment to know for sure. I

RE: Logo

2012-07-26 Thread Richard Kaye
Now you're just being cruel... ;-) -- rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Ed Leafe Sent: Thursday, July 26, 2012 11:38 AM To: profoxt...@leafe.com Subject: Re: Logo Is there anyone still using VFP who is

Re: VFP9 windows 8

2012-07-26 Thread Dan Covill
On 07/25/12 09:08, Allen wrote: They seem to be in program files (x86)/common files/Microsoft shared/VFP as normal. Only thing I can think of is the c runtime which could well be in system32. Back in VFP6 days I and my (former) partners decided to put the run-times in the same directory as

Re: Logo

2012-07-26 Thread Jean Laeremans
Not if that table is part of the exe Been doing it that way since the 90ties without problems... A+ jml On Thu, Jul 26, 2012 at 5:40 PM, Vincent Teachout tea...@taconic.net wrote: Richard Kaye wrote: Until your table/memo gets corrupted. :) + 1 [excessive quoting removed by server]

Re: VFP9 windows 8

2012-07-26 Thread Jean Laeremans
I still do it that way. A+ jml On Thu, Jul 26, 2012 at 9:17 PM, Dan Covill dcov...@san.rr.com wrote: On 07/25/12 09:08, Allen wrote: They seem to be in program files (x86)/common files/Microsoft shared/VFP as normal. Only thing I can think of is the c runtime which could well be in system32.

Re: VFP9 windows 8

2012-07-26 Thread Jeff Johnson
On 07/26/2012 12:55 PM, Jean Laeremans wrote: I still do it that way. A+ jml On Thu, Jul 26, 2012 at 9:17 PM, Dan Covill dcov...@san.rr.com wrote: On 07/25/12 09:08, Allen wrote: They seem to be in program files (x86)/common files/Microsoft shared/VFP as normal. Only thing I can think of

Re: [NF] SMTP Question

2012-07-26 Thread Michael Madigan
You're making a good case for gmail From: Fred Taylor fbtay...@gmail.com To: ProFox Email List profox@leafe.com Sent: Thursday, July 26, 2012 1:19 AM Subject: Re: [NF] SMTP Question I use GMail for similar purposes from VFP apps and it does keep copies under 

Re: [NF] SMTP Question

2012-07-26 Thread Jeff Johnson
Fred: I use MAPI myself for my email, but these users all use Outlook and POP3 / SMTP is what I have to live with. It actually works great and as I mentioned earlier in this thread, I am saving the sent status in the record so all is well. I also improved my logging since I lost it. Thanks,

Re: [NF] SMTP Question

2012-07-26 Thread Fred Taylor
My clients that use GMail for the apps use Outlook for their correspondence. No reason the two need to be together. Fred On Thu, Jul 26, 2012 at 1:41 PM, Jeff Johnson j...@san-dc.com wrote: Fred: I use MAPI myself for my email, but these users all use Outlook and POP3 / SMTP is what I have

Re: [NF] SMTP Question

2012-07-26 Thread Jeff Johnson
Thanks Fred. I will ponder that. Jeff --- Jeff Johnson j...@san-dc.com (623) 582-0323 www.san-dc.com On 07/26/2012 01:56 PM, Fred Taylor wrote: My clients that use GMail for the apps use Outlook for their correspondence. No reason the two need to be together. Fred On Thu,

Re: [NF] SMTP Question

2012-07-26 Thread Ted Roche
And just to complete the circle, I have customers with Outlook on their Windows PCs and Google Apps as the mail server, document repository, shared calendar, Blackberry sync and remote email access. On Thu, Jul 26, 2012 at 4:58 PM, Jeff Johnson j...@san-dc.com wrote: Thanks Fred. I will ponder

Re: [NF] SMTP Question

2012-07-26 Thread Jeff Johnson
Ted: I am sure it is possible but I have not spent enough time looking at this. My customers have their email addresses - j...@san-dc.com let's say. Can I use gmail as an email server and keep my email address? Currently my customers have a choice of using Google or Outlook depending on

Re: [NF] SMTP Question

2012-07-26 Thread Mike Copeland
Not Ted, but the answer is yes. Been doing it a long time now. Google just wants to scan your data...they don't care if you use them and then toss them aside like a used ... they just want you to use them! Mike Copeland Original Message Subject: Re: [NF] SMTP Question From:

RE: Easiest way to count months in range?

2012-07-26 Thread Christina Bull
Hey, I do something like this for a hiring company when working out overhire extension invoices. Some of them I have to work out weeks and others get calculated in months. I use this and it works for me. They don't have anything more than 2 years old (famous last words...) that need extending

Re: [NF] SMTP Question

2012-07-26 Thread Fred Taylor
http://www.google.com/intl/en/enterprise/apps/business/products.html One of the first things under GMail learn more is y...@yourcompany.com Fred On Thu, Jul 26, 2012 at 2:34 PM, Jeff Johnson j...@san-dc.com wrote: Ted: I am sure it is possible but I have not spent enough time looking at

Re: [NF] SMTP Question

2012-07-26 Thread Ted Roche
On Thu, Jul 26, 2012 at 5:34 PM, Jeff Johnson j...@san-dc.com wrote: Ted: I am sure it is possible but I have not spent enough time looking at this. My customers have their email addresses - j...@san-dc.com let's say. Can I use gmail as an email server and keep my email address? Yes.