Why is the Application Data folder not visible in the My Documents folder?

2009-08-26 Thread MB Software Solutions, LLC
I've got a VFP9SP1 app that's storing data by default in the AppData folder (C:\DOCUMENTS AND SETTINGS\MBABCOCK\APPLICATION DATA\EMAILEXTRACT2009\). However, this folder isn't visible to the user, so it's not easy for them to retrieve files created there. I'm thinking I'll use a different fold

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-26 Thread Paul McNett
MB Software Solutions, LLC wrote: > I've got a VFP9SP1 app that's storing data by default in the AppData > folder (C:\DOCUMENTS AND SETTINGS\MBABCOCK\APPLICATION > DATA\EMAILEXTRACT2009\). > > However, this folder isn't visible to the user, so it's not easy for > them to retrieve files created

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-26 Thread Rick Schummer
>> However, this folder isn't visible to the user, so it's not easy for them to retrieve files created there.<< This simple code should make it visible in Explorer, well at least it does on my Vista box. loShell = NEWOBJECT("_shellexecute","c:\program files\microsoft visual foxpro 9\ffc\_environ

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Stephen Russell
On Wed, Aug 26, 2009 at 11:07 PM, Paul McNett wrote: > MB Software Solutions, LLC wrote: >> I've got a VFP9SP1 app that's storing data by default in the AppData >> folder (C:\DOCUMENTS AND SETTINGS\MBABCOCK\APPLICATION >> DATA\EMAILEXTRACT2009\). >> >> However, this folder isn't visible to the user

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Tracy Pearson
You might consider shipping in your main application, and a second diagnostic application with a menu option to launch explorer in the desired path. I hide the launch menu option as a right click of the about form. Launching the explorer window the way it's done below, will start it as a child of

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Tracy Pearson
Even in a runtime, home(7) still returns the same path as the IDE. However, the shellexecute class is easy to integrate. -Original Message- From: Rick Schummer Sent: Thursday, August 27, 2009 12:58 AM >> However, this folder isn't visible to the user, so it's not easy for them to retriev

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread MB Software Solutions, LLC
Stephen Russell wrote: > On Wed, Aug 26, 2009 at 11:07 PM, Paul McNett wrote: >> MB Software Solutions, LLC wrote: >>> I've got a VFP9SP1 app that's storing data by default in the AppData >>> folder (C:\DOCUMENTS AND SETTINGS\MBABCOCK\APPLICATION >>> DATA\EMAILEXTRACT2009\). >>> >>> However, this f

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread MB Software Solutions, LLC
Tracy Pearson wrote: > You might consider shipping in your main application, and a second > diagnostic application with a menu option to launch explorer in the desired > path. I hide the launch menu option as a right click of the about form. > > Launching the explorer window the way it's done belo

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Paul McNett
MB Software Solutions, LLC wrote: > Tracy Pearson wrote: >> You might consider shipping in your main application, and a second >> diagnostic application with a menu option to launch explorer in the desired >> path. I hide the launch menu option as a right click of the about form. >> >> Launching th

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Paul Hill
On Thu, Aug 27, 2009 at 5:07 AM, Paul McNett wrote: > I actually wish that I'd done that for my app, too. I save a bunch of files > in the > user's appdata directory, but have a hell of a time telling someone how to > retrieve > them to email them to me. I can't even make a simple document explai

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Stephen Russell
On Thu, Aug 27, 2009 at 12:01 PM, Paul Hill wrote: > On Thu, Aug 27, 2009 at 5:07 AM, Paul McNett wrote: >> I actually wish that I'd done that for my app, too. I save a bunch of files >> in the >> user's appdata directory, but have a hell of a time telling someone how to >> retrieve >> them to em

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Paul McNett
Paul Hill wrote: > On Thu, Aug 27, 2009 at 5:07 AM, Paul McNett wrote: >> I actually wish that I'd done that for my app, too. I save a bunch of files >> in the >> user's appdata directory, but have a hell of a time telling someone how to >> retrieve >> them to email them to me. I can't even make

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Tracy Pearson
On NT based systems only. If you have clients that still run Win9x systems, it won't work. Tracy -Original Message- From: Paul McNett Sent: Thursday, August 27, 2009 1:14 PM Paul Hill wrote: > On Thu, Aug 27, 2009 at 5:07 AM, Paul McNett wrote: >> I actually wish that I'd done that for m

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Paul Hill
On Thu, Aug 27, 2009 at 6:42 PM, Tracy Pearson wrote: > On NT based systems only. If you have clients that still run Win9x systems, > it won't work. LOL! Does anyone have any customers with Win9x systems still? The oldest we have is Windows 2000, although ~50 sites running our DOS app... > ---

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Paul McNett
Tracy Pearson wrote: > On NT based systems only. If you have clients that still run Win9x systems, > it won't work. If anyone's still running a 10yo OS, they deserve for it not to work! :) Paul ___ Post Messages to: ProFox@leafe.com Subscription Maint

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread MB Software Solutions, LLC
Paul Hill wrote: > On Thu, Aug 27, 2009 at 6:42 PM, Tracy Pearson wrote: >> On NT based systems only. If you have clients that still run Win9x systems, >> it won't work. > > LOL! Does anyone have any customers with Win9x systems still? I think one of my older clients has some 9x systems yet...t

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Tracy Pearson
Yes -Original Message- From: Paul Hill Sent: Thursday, August 27, 2009 1:54 PM On Thu, Aug 27, 2009 at 6:42 PM, Tracy Pearson wrote: > On NT based systems only. If you have clients that still run Win9x > systems, it won't work. LOL! Does anyone have any customers with Win9x systems sti

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Tracy Pearson
I agree, but when you are talking to a 60+ lady in a church office that is computer phobic -Original Message- From: Paul McNett Sent: Thursday, August 27, 2009 1:55 PM Tracy Pearson wrote: > On NT based systems only. If you have clients that still run Win9x > systems, it won't work.

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Gene Wirchenko
At 10:53 2009-08-27, Paul Hill wrote: >On Thu, Aug 27, 2009 at 6:42 PM, Tracy Pearson wrote: > > On NT based systems only. If you have clients that still run Win9x systems, > > it won't work. > >LOL! Does anyone have any customers with Win9x systems still? I am not a customer of myself, bu

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Allen
Why ? Win98 ran faster on lower machines and the old if it aint broke works. Not that I know anyone using it. Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Paul McNett Tracy Pearson wrote: > On NT based systems only. If you have

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Brian Abbott
Gene Wirchenko wrote: > I bought my programming editor (WordStar 2000) in 1988, and I Dr Who, I presume -- Cheers Brian Abbott ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailma

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Stephen Russell
On Thu, Aug 27, 2009 at 2:38 PM, Allen wrote: > Why ? Win98 ran faster on lower machines and the old if it aint broke works. > Not that I know anyone using it. - Not that you could be secure if you browsed the web with it. BWAhahahahaha. DOS attack commencing in 3,2,1 -

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread MB Software Solutions, LLC
Allen wrote: > Why ? Win98 ran faster on lower machines and the old if it aint broke works. > Not that I know anyone using it. > Al I know that some of the games I used to play ran far better on older OSes than the newer ones. :-( -- Mike Babcock, MCP MB Software Solutions, LLC President, Chi

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Allen
Not all pc's need be webbed Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Stephen Russell - Not that you could be secure if you browsed the web with it. BWAhahahahaha. DOS attack commencing in 3,2,1

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Allen
I've not got tomb raider working past win98. Pity Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of MB Software Solutions, LLC Sent: 27 August 2009 22:18 To: profoxt...@leafe.com Subject: Re: Why is the Application Data folde

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Stephen Russell
On Thu, Aug 27, 2009 at 3:32 PM, Allen wrote: > Not all pc's need be webbed - That is funny. If it is not, how will you get naked pictures of StarOfTheDay? ;-> -- Stephen Russell Sr. Production Systems Programmer SQL Server DBA Web and Winform Development Independent C

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Allen
Subject: Re: Why is the Application Data folder not visible in the My Documents folder? On Thu, Aug 27, 2009 at 3:32 PM, Allen wrote: > Not all pc's need be webbed - That is funny. If it is not, how will you get naked pictures of Star

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Garry Bettle
On Thu, Aug 27, 2009 at 09:12:39 -0700, Paul McNett wrote: > I'm going to look into converting this code into Python, and doing it for all > 3 > platforms I support (Win, Mac, and Linux). Hi Paul, Care to share that python code when completed? Cheers, G. _

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-28 Thread Ted Roche
On Thu, Aug 27, 2009 at 1:42 PM, Tracy Pearson wrote: > On NT based systems only. If you have clients that still run Win9x systems, > it won't work. On, my goodness. Tracy, are you still supporting Win9x? Wow. Our FoxPro clients are in the SMB range, more towards the "M" size and are nearly all W

RE: Why is the Application Data folder not visible in the My Documents folder?

2009-08-28 Thread Tracy Pearson
I have a support issues just about weekly, which end up involving my varied past employments. Hardware doesn't much get in the list, but it's called upon now and then. Mainly networking and printers and software conflicts. There are 5 tech's here that talk with our end clients. They will converse a

Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-28 Thread Paul McNett
Garry Bettle wrote: > On Thu, Aug 27, 2009 at 09:12:39 -0700, Paul McNett wrote: >> I'm going to look into converting this code into Python, and doing it for >> all 3 >> platforms I support (Win, Mac, and Linux). > > Hi Paul, > > Care to share that python code when completed? I will indeed, ass

[OT] Re: Why is the Application Data folder not visible in the My Documents folder?

2009-08-27 Thread Gene Wirchenko
I have belatedly added "[OT]". This thread has earned it. Consider adding it in your other replies. At 12:48 2009-08-27, Brian Abbott wrote: >Gene Wirchenko wrote: > > I bought my programming editor (WordStar 2000) in 1988, and I > >Dr Who, I presume Sorry, I missed the ref