RE: VFP, OLE error code 0x80004005: unspecified error

2009-04-28 Thread Dave Crozier
Michael, Just the same as me. Unfortunately the system restore is a one chance only as if it doesn’t work then you can sometimes find yourself in an even worse situation. Dave Crozier -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Michael

Re: [NF] Where did dabo go?

2009-04-28 Thread Alan Bourke
On Fri, 24 Apr 2009 09:14 +0100, Alan Bourke alanpbou...@fastmail.fm wrote: Pete I just set up a new Ubuntu virtual machine with Python and the Wing IDE installed last week with the intention of restarting my Python learnin'. Tip - when upgrading Ubuntu 8 to 9, where it's instaleld in a

[OT] keep up with the panic..

2009-04-28 Thread Jean Laeremans
http://maps.google.com/maps/ms?ie=UTF8hl=ent=pmsa=0msid=106484775090296685271.0004681a37b713f6b5950ll=32.546813,-61.875spn=117.252956,309.726563z=2 A+ jml ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: VFP, OLE error code 0x80004005: unspecified error

2009-04-28 Thread Alan Bourke
On Mon, 27 Apr 2009 22:15 -0400, Anthony J. Gundrum agund...@comcast.net wrote: The 0x80004005 code is the standard access denied/rights error. Somewhere along the line permissions were changed somewhere. Was IE updated? Did you download any new security updates? Or more likely, did

RE: VFP8: Record Lock

2009-04-28 Thread Jack Skelley
Fred: Thanks! If this is in the docs I certainly missed it. Thanks for all the suggestions. Regards, Jack From: profoxtech-boun...@leafe.com [profoxtech-boun...@leafe.com] On Behalf Of Fred Taylor [fbtay...@gmail.com] Sent: Friday, April 24, 2009 7:57

Re: [NF] Where did dabo go?

2009-04-28 Thread Jeff Johnson
When I went from 7 to 8 I put my home folder in its own partition. Now I can upgrade and don't lose anything in my home directory, like my virtual box files. Jeff Jeff Johnson j...@san-dc.com SanDC, Inc. 623-582-0323 Fax 623-869-0675 Alan Bourke wrote: On Fri, 24 Apr 2009 09:14 +0100,

Re: VFP8: Record Lock

2009-04-28 Thread Fred Taylor
In the VFP9 help, emphasis mine. (don't have VFP8 installed anywhere to what it says): Remarks ISRLOCKED( ) returns a logical true (.T.) if the record is locked by the current application; otherwise a logical false (.F.) is returned. Note ISRLOCKED( ) only returns .T. in the data session

Re: [NF] Where did dabo go?

2009-04-28 Thread Alan Bourke
On Tue, 28 Apr 2009 06:40 -0700, Jeff Johnson j...@san-dc.com wrote: When I went from 7 to 8 I put my home folder in its own partition. Now I can upgrade and don't lose anything in my home directory, like my virtual box files. I presume you're talking about a Linux host Jeff? In my case

RE: VFP8: Record Lock

2009-04-28 Thread Rick Borup
For the record, it's essentially the same in VFP8. The VFP8 Help file says: ISRLOCKED( ) returns a logical true (.T.) if the record is locked by the current application; otherwise a logical false (.F.) is returned. Note ISRLOCKED() only returns .T. at the workstation that applied the record

Re: [OT] keep up with the panic..

2009-04-28 Thread Pete Theisen
Jean Laeremans wrote: http://maps.google.com/maps/ms?ie=UTF8hl=ent=pmsa=0msid=106484775090296685271.0004681a37b713f6b5950ll=32.546813,-61.875spn=117.252956,309.726563z=2 Hi Jean! Google maps may have been drinking. I see two worlds on my screen, two of every country. If I try to zoom in it

RE: VFP8: Record Lock

2009-04-28 Thread Jack Skelley
Rick: Now that I have re-read the docs I see this to be true. So I did miss it originally... Thanks! Regards, Jack Skelley From: profoxtech-boun...@leafe.com [profoxtech-boun...@leafe.com] On Behalf Of Rick Borup [rbo...@ita-software.com] Sent:

[OT] Jump to conclusions why stop now.

2009-04-28 Thread Stephen Russell
Local story is a lot bigger outside of town then inside it. http://www.nytimes.com/2009/04/28/us/28mural.html?_r=2partner=rssemc=rss -- Stephen Russell Sr. Production Systems Programmer Web and Windows Development Independent Contractor Memphis TN 901.246-0159

Make Desktop Form Modal

2009-04-28 Thread Jeff Johnson
I know I have seen this somewhere, but I can't find it. I need to make a desktop form wait for input before returning to the calling procedure. Either Modal or Simulated Modal is what I need with _SCREEN=OFF. This also needs to work on XP and Vista. Can anyone point me in the right

Re: Make Desktop Form Modal

2009-04-28 Thread Paul McNett
Jeff Johnson wrote: I know I have seen this somewhere, but I can't find it. I need to make a desktop form wait for input before returning to the calling procedure. Either Modal or Simulated Modal is what I need with _SCREEN=OFF. This also needs to work on XP and Vista. Can anyone

Re: Make Desktop Form Modal

2009-04-28 Thread Jeff Johnson
I have a loader for my vfp application. When I distribute it I want the user to select the path to the server if it is blank (as it is when it is distributed) Normally the loader displays nothing but I need to ask them a question before running the loader. Pretty evil, huh? Unless you have

Re: Make Desktop Form Modal

2009-04-28 Thread Paul McNett
Jeff Johnson wrote: I have a loader for my vfp application. When I distribute it I want the user to select the path to the server if it is blank (as it is when it is distributed) Normally the loader displays nothing but I need to ask them a question before running the loader. Pretty

Re: Make Desktop Form Modal

2009-04-28 Thread Jeff Johnson
When I issue a getfile() it will appear on a desktop form. If there is no form then getfile() does not become visible. The problem is that the program has gone on it's merry way and there is no way to act on the path captured in the form. Jeff Jeff Johnson j...@san-dc.com SanDC, Inc.

Re: Make Desktop Form Modal

2009-04-28 Thread Paul McNett
Jeff Johnson wrote: When I issue a getfile() it will appear on a desktop form. If there is no form then getfile() does not become visible. The problem is that the program has gone on it's merry way and there is no way to act on the path captured in the form. I'm too rusty with VFP to be

RE: Make Desktop Form Modal

2009-04-28 Thread John Weller
My loader also is a prg which calls Getfile() and seems to work in the same way. If yours doesn't work why not have a form which display suitable instructions, a text box to hold the filename, a Browse button which has the Getfile() command and an OK button which checks that a file has been

Re: Make Desktop Form Modal

2009-04-28 Thread Frank Cazabon
Jeff Johnson wrote: When I issue a getfile() it will appear on a desktop form. If there is no form then getfile() does not become visible. The problem is that the program has gone on it's merry way and there is no way to act on the path captured in the form. Sounds like

RE: Make Desktop Form Modal

2009-04-28 Thread Tracy Pearson
Your desktop form needs to have a READ EVENTS after it is visible. Then CLEAR EVENTS will continue from that point. Something like: IF EMPTY(FilePath) DO FORM AskUserForPath READ EVENTS ENDIF In the DESTROY or UNLOAD of the form, put CLEAR EVENTS HTH, Tracy -Original

Re: Make Desktop Form Modal

2009-04-28 Thread Ken Kixmoeller/fh
On Apr 28, 2009, at 12:48 PM, Jeff Johnson wrote: Pretty evil, huh? Unless you have a suggestion. Doesn't Michael have his loader object posted on Ed's downloads page? Why reinvent??? Ken ___ Post Messages to: ProFox@leafe.com Subscription

Re: Make Desktop Form Modal

2009-04-28 Thread Jeff Johnson
I use VMP's loader which works great. Here is the solution: Tracy's approach worked. I check for an empty file path and then throw up my desktop form. Then run the loader after destroying the form. IF EMPTY(FilePath) DO FORM AskUserForPath READ EVENTS ENDIF Do myloader In

RE: Make Desktop Form Modal

2009-04-28 Thread Allen
I think me also on this one. Not on current projects but I have done it where it requests a directory before running the main screen Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Paul McNett I'm too rusty with VFP to be of

[OT] joke

2009-04-28 Thread Stephen Russell
A firefighter was working on the engine outside the station, when he noticed a little girl nearby in a little red wagon with little ladders hung off the sides, and a garden hose tightly coiled in the middle. The girl was wearing a firefighters helmet. The wagon was being pulled by her dog and her

Need a protection scheam to deliver vfp exe (using setup factory branded with refox)

2009-04-28 Thread Gerald Foote
I finally have developed a routine I would like to try to sell. I would like to offer a download that would timeout after a certain period. I can think of several schemes, but having no experience I am hoping to get feed back for my peers. I would rather not horse with the registry. Any and all

Need a protection scheam to deliver vfp exe (using setup factory branded with refox)

2009-04-28 Thread Gerald Foote
I finally have developed a routine I would like to try to sell to the general public..I would like to offer a download that would timeout after a certain period. I can think of several schemes, but having no experience I am hoping to get feed back for my peers. I would rather not horse with the

RE: Need a protection scheam to deliver vfp exe (using setup factory branded with refox)

2009-04-28 Thread Carl Lindner
Google software passport - I use it for a vertical application - Carl Lindner -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Gerald Foote Sent: Tuesday, April 28, 2009 7:33 PM To: profox@leafe.com Subject: Need a protection scheam to

[OT] Danged Brits

2009-04-28 Thread Pete Theisen
Hi Everybody! Well, they needn't have been so smug . . . http://blog.greenbird.co.uk/2009/03/27/greenbird-smashes-world-record/ -- Regards, Pete http://pete-theisen.com/ http://elect-pete-theisen.com/ ___ Post Messages to: ProFox@leafe.com

Re: [OT] Danged Brits

2009-04-28 Thread Michael Madigan
Of what use is it? * Join the OBAMA RESISTANCE MOVEMENT! http://www.cafepress.com/rightwingmike/6181419 --- On Wed, 4/29/09, Pete Theisen petethei...@verizon.net wrote: From: Pete Theisen petethei...@verizon.net Subject: [OT] Danged Brits

Re: [OT] Danged Brits

2009-04-28 Thread Pete Theisen
Michael Madigan wrote: Of what use is it? Hi Michael! It sure has dream value. If only there were some way to be able to tell the Oil Mullahs and rich people to stuff it. Suppose the vehicle had 4 wings in a 17 foot length, was 8' 6 wide and the wings were only 13' 6 high . . . Reversing