Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Ted Roche
Doug Hennig had tweeted that he had updated one of this workstations and everything went well. Let's cross our fingers and hope it survives the updates :) On Mon, Aug 17, 2015 at 7:18 PM, Mike Copeland m...@ggisoft.com wrote: Alan Bourke wrote: We've had a few mom and pop customers, i.e. not

Object reference to a forms DataEnvironment

2015-08-18 Thread Dave Crozier
Fellow VFPers, I can't for the life of me remember how to reference the Default DataEnvironment of a form at runtime. What I am doing is creating a SQL manager object in the BeforeOpenTables() of a DE and I want to write back into the data environment so as to update the DataSourceType and

Re: Object reference to a forms DataEnvironment

2015-08-18 Thread Thierry Nivelet
thisform.dataEnvironment only with form.scx or form class with .DEclass/.DEclassLibrary Thierry Nivelet FoxInCloud Give your VFP app a second life in the cloud http://foxincloud.com/ Le 18/08/2015 14:33, Dave Crozier a écrit : Fellow VFPers, I can't for the life of me remember how to

Re: Problem with COPY and RENAME

2015-08-18 Thread Jeff Johnson
RENAME LOWER(lcimportpath + UPPER(lcimage)) TO lcexportpath + UPPER(ALLTRIM(doc_url)) does not work. I used the adir() method and it is finding the file, but there is something wrong with this command. It looks okay to me. This is one of those FoxPro things that hangs me up. I could

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread mbsoftwaresolutions
On 2015-08-17 14:23, Ted Roche wrote: This sounds like it should automatically disqualify Windows for any confidential work: HIPAA, stock trading, banking, government work, etc. Agreed! Sounds like a nightmare scenario for privacy leaks. ___ Post

RE: Problem with COPY and RENAME

2015-08-18 Thread Tracy Pearson
Jeff Johnson wrote on 2015-08-18: lcimage = TRANSFORM(caf_image) + '.' + ALLTRIM(caf_ext) lcexportpath = 'D:\users\public\applications\ft_cafe\documents\export\' WAIT WINDOW (lcexportpath) + lcimage + '/' + (lcexportpath) + UPPER(doc_url) IF FILE((lcexportpath)

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Paul Hill
On 18 August 2015 at 15:25, Ted Roche tedro...@gmail.com wrote: I have an old, old graphics card in one Windows 8.1 machine that will likely never be supported, but the icon still hangs around. It will probably work fine. The driver model hasn't changed in ages (Vista?). After upgrading you

Problem with COPY and RENAME

2015-08-18 Thread Jeff Johnson
lcimage = TRANSFORM(caf_image) + '.' + ALLTRIM(caf_ext) lcexportpath = 'D:\users\public\applications\ft_cafe\documents\export\' WAIT WINDOW (lcexportpath) + lcimage + '/' + (lcexportpath) + UPPER(doc_url) IF FILE((lcexportpath) + lcimage) COPY FILE (lcexportpath) +

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Alan Bourke
In just under a year -- Alan Bourke alanpbourke (at) fastmail (dot) fm On Tue, 18 Aug 2015, at 11:08 PM, Kurt @ VR-FX wrote: U know when free period runs out??? Sent from my iPhone On Aug 18, 2015, at 11:56 AM, Alan Bourke alanpbou...@fastmail.fm wrote: On Tue, 18 Aug

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Mike Copeland
7/29/16 Mike Copeland Alan Bourke wrote: In just under a year -- Alan Bourke alanpbourke (at) fastmail (dot) fm On Tue, 18 Aug 2015, at 11:08 PM, Kurt @ VR-FX wrote: U know when free period runs out??? ___ Post Messages to: ProFox@leafe.com

Re: Problem with COPY and RENAME

2015-08-18 Thread Tracy Pearson
Try the low level file open to see if you can open it exclusive. fopen(...) and fclose(...) On August 18, 2015 9:22:33 PM EDT, jeff j...@san-dc.com wrote: No they don't, Fred. Adir() and file() are finding the file to be renamed. Sent from my T-Mobile 4G LTE Device -- Sent from my

Re: Problem with COPY and RENAME

2015-08-18 Thread jeff
No they don't, Fred. Adir() and file() are finding the file to be renamed. Sent from my T-Mobile 4G LTE Device Original message From: Fred Taylor fbtay...@gmail.com Date:08/18/2015 16:52 (GMT-07:00) To: profoxt...@leafe.com Subject: Re: Problem with COPY and RENAME Do

Re: Problem with COPY and RENAME

2015-08-18 Thread Jeff Johnson
RENAME '' + lcimportpath + LOWER(lcimage) + '' TO '' + lcexportpath + UPPER(ALLTRIM(doc_url)) + '' does not work still. On 8/18/2015 3:39 PM, Fernando D. Bozzo wrote: Hi Jeff: For testing, do the same on the DOS Window, to see if it is working, then try this way RENAME ( '' +

Re: Problem with COPY and RENAME

2015-08-18 Thread Jeff Johnson
I have some sort of new program that opens up when I open a pdf. I can't close the app because it has no close button. When I open a pdf and then close it, it acts as though it is still open. I want to get rid of that darn program, but I don't know what it is called or how it got on my

Re: Problem with COPY and RENAME

2015-08-18 Thread Fred Taylor
Do your variables lcimage or doc_url have spaces? Try: RENAME (lcimportpath + LOWER(lcimage)) TO (lcexportpath + UPPER(ALLTRIM(doc_url))) Fred On Tue, Aug 18, 2015 at 3:51 PM, Jeff Johnson j...@san-dc.com wrote: RENAME '' + lcimportpath + LOWER(lcimage) + '' TO '' + lcexportpath +

Re: Problem with COPY and RENAME

2015-08-18 Thread Fernando D. Bozzo
Hi Jeff: For testing, do the same on the DOS Window, to see if it is working, then try this way RENAME ( '' + (lcexportpath) + lcimage + '' ) TO ( '' + (lcexportpath) + UPPER(ALLTRIM(doc_url)) + '' ) Note: The quotes are double between single Regards.- 2015-08-18 22:12 GMT+02:00 Jeff Johnson

Re: Problem with COPY and RENAME

2015-08-18 Thread Fernando D. Bozzo
I think that Adobe Reader keeps in memory when you close, so it fast-open the next time you open it. Don't know how to completely close it from the UI, but you can kill the process with Sysinternals Process Explorer. 2015-08-19 0:55 GMT+02:00 Jeff Johnson j...@san-dc.com: I have some sort of

Re: Problem with COPY and RENAME

2015-08-18 Thread Jean MAURICE
can you try to write FILE(lcexportpath+lcimage) without parenthesis around lcexportpath and COPY FILE (lcexportpath + lcimage) TO (lcexportpath + UPPER(ALLTRIM(doc_url)) ) And I also use ADIR()0 instead of FILE ! The Foxil ___ Post Messages

RE: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Kurt Wendt
Hey there Ted, I completely understand about your posting this original thread as Info - and not your personal opinion. My main CG workstation at home has Win7. And, I have been wondering about the whole upgrade to Win10. The author actually claimed Microsoft has two great modern OSes:

RE: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Richard Kaye
If you've got the home version there's probably a little teaser sitting in your system tray to upgrade to W10. At least that's what I saw on my wife's laptop last night while I was doing some home IT. -- rk -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Ted Roche
On Tue, Aug 18, 2015 at 9:59 AM, Richard Kaye rk...@invaluable.com wrote: If you've got the home version there's probably a little teaser sitting in your system tray to upgrade to W10. At least that's what I saw on my wife's laptop last night while I was doing some home IT. Works for the

[NF] Considered TV control apps?

2015-08-18 Thread Stephen Russell
Have a Visio TV and they gave me this link when I asked about an API for development. https://developer.yahoo.com/connectedtv/ -- Stephen Russell Sr. Analyst Ring Container Technology Oakland TN 901.246-0159 cell --- StripMime Report -- processed MIME parts --- multipart/alternative

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Kurt @ VR-FX
U know when free period runs out??? Sent from my iPhone On Aug 18, 2015, at 11:56 AM, Alan Bourke alanpbou...@fastmail.fm wrote: On Tue, 18 Aug 2015, at 02:50 PM, Kurt Wendt wrote: This leads me to believe that maybe I should just Stick w/Win7 and I will be fine. Unless you have

Re: [NF] Why Windows 10 Sucks..

2015-08-18 Thread Alan Bourke
On Tue, 18 Aug 2015, at 02:50 PM, Kurt Wendt wrote: This leads me to believe that maybe I should just Stick w/Win7 and I will be fine. Unless you have a compelling reason to upgrade or curiosity about Windows 10 I would stay on Windows 7, at least until just before the 'get it for free'

RE: Foxes, Lots of Foxes

2015-08-18 Thread Kurt Wendt
You're quite welcome Gene. Some of those pics were just totally adorable. Makes me want to go to that place and visit those foxes. Or - better yet - get one for a Pet! How cool would that be - a FoxPro guy with a Fox! But, I suspect that they won't make for a viable pet - like a Cat - and it's