RE: VFP on 64 bit

2010-06-22 Thread Allen
I have an issue or two so far with windows 7. Not 64 bit, but I see shortcut menus where some of the items do not appear until the mouse is put over the text. I also have problems with teechart 7 with C05's that did not happen in XP. Al ___ Post

Re: [OT] Should Obama Resign over Feb. 13?

2010-06-22 Thread Jean Laeremans
zzz A+ jml ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: VFP on 64 bit

2010-06-22 Thread Dave Crozier
Sytze, No problems here on 64 bit Windows 7 apart from the one I had earlier in the month in that I was running the Development system with administrator rights and hence the OLE Drag/Drop wouldn't work from outside VFP into VFP. Running VFP as a normal user sorted out the problem. I would

Re: VFP on 64 bit

2010-06-22 Thread MB Software Solutions, LLC
Rick Schummer wrote: snipped I have several netbooks running Windows 7 on a 1GB of RAM and an Atom processor (not the fastest thing around) and the OS runs fine with several browsers open and even MS Office apps (all pigs). I did the Anytime Upgrade to Ultimate on one and Pro on the other.

Re: [NF] languages

2010-06-22 Thread Publius Maximus
Don't really follow you here. The server may not have to parse before the execution, but the client will have to do it, all you do here is shift the load from the server to the client. Well, once upon a time shifting all the work to the server was the new hotness, as the era of dumb clients

Re: [OT] Obama's thuggery useless in fighting spill

2010-06-22 Thread Michael Madigan
No, Obama saved the thug autoworkers. --- On Tue, 6/22/10, Stephen Russell srussell...@gmail.com wrote: From: Stephen Russell srussell...@gmail.com Subject: Re: [OT] Obama's thuggery useless in fighting spill To: ProFox Email List profox@leafe.com Date: Tuesday, June 22, 2010, 8:37 AM On

RE: VFP on 64 bit

2010-06-22 Thread Tracy Pearson
Sytze de Boer wrote on 2010-06-21: I have a client who has transferred one of my systems to 64 bit Windows 7 It runs fine on my own Windows 7 laptop He gets a message that says The version of this file is not compatible with the version of Windows you're running. Check your computer's system

[OT] Ink Spill

2010-06-22 Thread Publius Maximus
http://comics.com/michael_ramirez/2010-05-06/ - - - It's all about scale and perspective. - Publius -- It ought never to be forgotten, that a firm union of this country, under an efficient government, will probably be an increasing object of jealousy to more than one nation of Europe; and

[NF] Rsync usage scenario?

2010-06-22 Thread Malcolm Greene
I know there's several rsync users on this forum. Do any of you have any experience or thoughts on the following usage scenario: ~1000 user specific folders containing a random mix of files - want to sync files with specific extensions ignoring other files - want to move (transfer then delete)

Capturing the Username in VFP...

2010-06-22 Thread Kurt Wendt
Hey folks, I looked around in the Online help in VFP (the version I am using to develop this small Time Tracking utility is 7.0 - but, I could always switch over to VFP if the option IS there!) - but, I found no way to capture the Username (as in the Windows login). I suspect there may be no

RE: Capturing the Username in VFP...

2010-06-22 Thread Richard Kaye
Try the GETENV() function. (I'm not sure if that's available in 7.) rk Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Kurt Wendt Sent: Tuesday, June 22, 2010 12:12 PM To: profoxt...@leafe.com Subject: Capturing the Username in

Re: [NF] Rsync usage scenario?

2010-06-22 Thread Ed Leafe
On Jun 22, 2010, at 12:09 PM, Malcolm Greene wrote: I know there's several rsync users on this forum. Do any of you have any experience or thoughts on the following usage scenario: ~1000 user specific folders containing a random mix of files - want to sync files with specific extensions

RE: Capturing the Username in VFP...

2010-06-22 Thread Kent Belan
This is what we use Function NetUser LOCAL llNameReturnValue, lcUserName, cReturnValue DECLARE GetUserName IN WIN32API STRING @,INTEGER @ *!* Get the User Information lcUserName = SPACE(50) llNameReturnValue = GetUserName(@lcUserName,50) RETURN IIF(llNameReturnValue,

Re: [NF] Rsync usage scenario?

2010-06-22 Thread kamcginnis
I use rsync and I have several posts here. For use from on a XP computer to update one folder (dropbox) from some other folders on the same computer/local network it works great; better than anything I have tried. To copy from Windows to an offsite Linux server (Webfaction) it works great

RE: Capturing the Username in VFP...

2010-06-22 Thread msavage
Here's one I've used for years. local lcusername,lres,cUser Declare integer GetUserName in advapi32 String@, Integer@ lcusername = replicate(chr(0),255) lres = GetUserName(@lcusername,255) If lres # 0 cUser=(upper(left(lcusername,at(chr(0),lcusername)-1))) Else cUser=UNKN Endif

RE: Capturing the Username in VFP...

2010-06-22 Thread Allen
There is a sys() for it, 1 I think. Give computer name as well Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of msav...@golden.net Sent: 22 June 2010 19:10 To: profoxt...@leafe.com Subject: RE: Capturing the Username in VFP...

RE: Capturing the Username in VFP...

2010-06-22 Thread Grigore Dolghin
Sys(0) returns the username # computername. -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Kurt Wendt Sent: Tuesday, June 22, 2010 7:12 PM To: profoxt...@leafe.com Subject: Capturing the Username in VFP... Hey folks, I looked

RE: Capturing the Username in VFP...

2010-06-22 Thread Rick Schummer
I found no way to capture the Username (as in the Windows login). I suspect there may be no native way in VFP to do it. lcLogin = ALLTRIM(GETWORDNUM(SYS(0), 2, #)) Rick White Light Computing, Inc. www.whitelightcomputing.com www.swfox.net www.rickschummer.com

Re: [NF] Rsync usage scenario?

2010-06-22 Thread Malcolm Greene
Ed and Ken, Thanks for your advice! It sounds like I have some reading to do (the man page for rsync is priceless). Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of

RE: Capturing the Username in VFP...

2010-06-22 Thread Kurt Wendt
Thank you all VERY much for your Help on this!!! Grigore - I actually did look in the Help under the SYS commands - and I saw that Sys(0) was the Network ID. Guess I didn't know that the Username would have been included within it! And - thank you Rick for that command - which I am going to try

Re: [NF] Rsync usage scenario?

2010-06-22 Thread Malcolm Greene
the man page for rsync is priceless Here's a link for anyone following the recent rsync threads. http://www.samba.org/ftp/rsync/rsync.html Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

[NF] New Machine... Arrives

2010-06-22 Thread Joel N. Fischoff
Heya, Well, y'all asked me to post when I finally got my new computer. I have, an ASUS G73JH-A1. I've spent most of the last two days transferring information onto it, not that I'm anywhere near done. This message, if it goes out, will be the first E-mail sent from here. Of course, I've

RE: Capturing the Username in VFP...

2010-06-22 Thread Richard Kaye
I checked the Foxwiki and GETENV() was added as of VFP6 - GETENV(USERNAME). No parsing or DLLs required... rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Kurt Wendt Sent: Tuesday, June 22, 2010 2:52 PM To:

RE: Capturing the Username in VFP...

2010-06-22 Thread Kurt Wendt
Too bad stuff like that isn't properly listed in the online Help! I did a search for username - but, got only 2 hits - and neither had anything to do with what I needed. Oh well... -K- -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf

RE: [NF] New Machine... Arrives

2010-06-22 Thread PabloSr
Quite a machine, congrats! === *PabloSr* * -Original Message- * From: profoxtech-boun...@leafe.com [mailto:profoxtech- * boun...@leafe.com] On Behalf Of Joel N. Fischoff * Sent: Wednesday, June 23, 2010 3:27 PM * To: profoxt...@leafe.com * Subject: [NF] New Machine...

Re: [NF] New Machine... Arrives

2010-06-22 Thread Stephen Russell
On Wed, Jun 23, 2010 at 2:27 PM, Joel N. Fischoff petru...@rcn.com wrote: Heya, Well, y'all asked me to post when I finally got my new computer.  I have, an ASUS G73JH-A1.  I've spent most of the last two days transferring information onto it, not that I'm anywhere near done. This message,

[WC]

2010-06-22 Thread Rafael Copquin
Can't help it guys, I hope there are not too many Greeks in this list, but ARGENTINA 2 GREECE 0 He,he,he Rafael Copquin ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of

Re: [WC]

2010-06-22 Thread Michael Oke, II
Is that result a surprise? I would think not but perhaps i've overlooked something? ::michael On Jun 22, 2010 3:53 PM, Rafael Copquin rcopq...@ciudad.com.ar wrote: Can't help it guys, I hope there are not too many Greeks in this list, but ARGENTINA 2 GREECE 0 He,he,he Rafael Copquin

Re: [WC]

2010-06-22 Thread Ricardo Aráoz
On 22/06/10 20:03, Michael Oke, II wrote: Is that result a surprise? I would think not but perhaps i've overlooked something? Wouldn't know, ask the Germans for surprising results. We are now first in our zone. ___ Post Messages to:

Screen display

2010-06-22 Thread Sytze de Boer
I have asked this before and have searched my archives but the answer escapes me. I've re-installed my pc, and when I type DIR in my command window, the columns are so wide, I can't see what I need (well, not tidily anyway) I knopw there's a way to change the fonts and clumn widths, but my age

Re: [NF] Rsync usage scenario?

2010-06-22 Thread Paul McNett
On 6/22/10 9:09 AM, Malcolm Greene wrote: I know there's several rsync users on this forum. Do any of you have any experience or thoughts on the following usage scenario: ~1000 user specific folders containing a random mix of files - want to sync files with specific extensions ignoring other

Re: [NF] Rsync usage scenario?

2010-06-22 Thread Paul McNett
On 6/22/10 9:47 AM, kamcgin...@gmail.com wrote: To copy from Windows to an offsite Linux server (Webfaction) it works great also, however, I still have not figured a way to avoid having to type in the password manually. I am sure it is something simple like where to put name the private

Re: [WC]

2010-06-22 Thread Ed Leafe
On Jun 22, 2010, at 6:48 PM, Rafael Copquin wrote: Can't help it guys, I hope there are not too many Greeks in this list, but ARGENTINA 2 GREECE 0 Glad to see that result. And also glad to see the French team eliminated. What a soap opera! -- Ed Leafe

[OT] Lord of the Flies

2010-06-22 Thread Publius Maximus
http://yhoo.it/9YRFKH - - - Curious how many photos of mice and flies at the White House in the last year and a half have been snapped. In other news, Captain Kickass gets to dress down his hand-picked general tomorrow, who apparently has surmised that The One's a clueless idiot.

Re: Screen display

2010-06-22 Thread Gianni Turri
Hi Sytze, to set VFP screen font, be sure to have the focus in the Command window (click in it with the mouse), press SHIFT and while pressed click on Format, then Screen Fonts. Gianni On Wed, 23 Jun 2010 11:45:06 +1200, Sytze de Boer sytze.k...@gmail.com wrote: I have asked this before and

Re: Screen display

2010-06-22 Thread Sytze de Boer
Good man, I knew it was simple On Wed, Jun 23, 2010 at 12:22 PM, Gianni Turri gianni...@gmail.com wrote: Hi Sytze, to set VFP screen font, be sure to have the focus in the Command window (click in it with the mouse), press SHIFT and while pressed click on Format, then Screen Fonts.

Re: [WC]

2010-06-22 Thread Ricardo Aráoz
On 22/06/10 21:07, Ed Leafe wrote: On Jun 22, 2010, at 6:48 PM, Rafael Copquin wrote: Can't help it guys, I hope there are not too many Greeks in this list, but ARGENTINA 2 GREECE 0 Glad to see that result. And also glad to see the French team eliminated. What a soap

Re: [WC]

2010-06-22 Thread Michael Madigan
Where did Greece get the money to buy plane tickets to South Africa? --- On Tue, 6/22/10, Rafael Copquin rcopq...@ciudad.com.ar wrote: From: Rafael Copquin rcopq...@ciudad.com.ar Subject: [WC] To: ProFox Email List profox@leafe.com Date: Tuesday, June 22, 2010, 6:48 PM Can't help it guys,

Re: [OT] Lord of the Flies

2010-06-22 Thread Michael Madigan
In cases of demonic possession, flies and other vermin are sometimes present. --- On Tue, 6/22/10, Publius Maximus publius.b.maxi...@gmail.com wrote: From: Publius Maximus publius.b.maxi...@gmail.com Subject: [OT] Lord of the Flies To: ProFox Email List profox@leafe.com Date: Tuesday, June

Re: [OT] Lord of the Flies

2010-06-22 Thread Pete Theisen
Michael Madigan wrote: In cases of demonic possession, flies and other vermin are sometimes present. Hi Michael, Yes, in my house too, now and then - until I kill them. As far as I know, my house is possessed by, well, me. Curious how many photos of mice and flies at the White House in the

Re: [NF] New Machine... Arrives

2010-06-22 Thread Helio Wakasugui
I´m jealous! HW On Wed, Jun 23, 2010 at 4:27 PM, Joel N. Fischoff petru...@rcn.com wrote: Heya, Well, y'all asked me to post when I finally got my new computer. I have, an ASUS G73JH-A1. I've spent most of the last two days transferring information onto it, not that I'm anywhere near

Re: [NF] New Machine... Arrives

2010-06-22 Thread Joel N. Fischoff
I bet that getting a bag is going to be tough. My son needed to get a new backpack for his 17 laptop that replaced his 15 one. Heh. I don't need to work on that one: the machine comes with a backpack (and a gaming mouse). Joel ___ Post Messages

Re: [NF] languages

2010-06-22 Thread Ricardo Aráoz
On 22/06/2010 12:18 p.m., Publius Maximus wrote: Don't really follow you here. The server may not have to parse before the execution, but the client will have to do it, all you do here is shift the load from the server to the client. Well, once upon a time shifting all the work to the

RE: [NF] New Machine... Arrives

2010-06-22 Thread Grigore Dolghin
Hey, congrats for that laptop. Good machine, as the spec say ;) You could do your entire programming stuff in virtual machines only ;) About backpacks: I bought this one for my laptop: http://www.targus.com/uk/product_details.asp?sku=tcb001eu It has two things that made me happy: two straps

Re: [WC]

2010-06-22 Thread Michael Oke, II
WHOGAS! ::michael On Jun 22, 2010 6:45 PM, Michael Madigan mmadi10...@yahoo.com wrote: Where did Greece get the money to buy plane tickets to South Africa? --- On Tue, 6/22/10, Rafael Copquin rcopq...@ciudad.com.ar wrote: From: Rafael Copquin rcopq...@ciudad.com.ar Subject: [WC] To: ProFox

Re: [OT] Lord of the Flies

2010-06-22 Thread Michael Madigan
I'm sure Obongo will have ravens landing on him shortly --- On Tue, 6/22/10, Pete Theisen petethei...@verizon.net wrote: From: Pete Theisen petethei...@verizon.net Subject: Re: [OT] Lord of the Flies To: ProFox Email List profox@leafe.com Date: Tuesday, June 22, 2010, 10:30 PM Michael

Re: [NF] Rsync usage scenario?

2010-06-22 Thread kamcginnis
Hi Paul, Yes, I am using cygwin. - Original Message - From: Paul McNett p...@ulmcnett.com To: profox@leafe.com Sent: Tuesday, June 22, 2010 5:06 PM Subject: Re: [NF] Rsync usage scenario? On 6/22/10 9:47 AM, kamcgin...@gmail.com wrote: To copy from Windows to an offsite Linux server