Buufer overrun detected

2010-07-23 Thread Peter Hart
Hi All Has anybody come across this problem. After building my EXE I now get an error (Windows not FoxPro) Title says: Microsoft Visual C++ Runtime Library Error says: Buffer overrun detected! Program C:\Users\Phart\CSPA\Cspa.exe A buffer overrun has been detected which has corrupted

RE: An interview I gave for MarketWatch

2010-07-23 Thread ReportSculptor
Hi Grigore -Original Message- From: Grigore Dolghin [mailto:gdolg...@gmail.com] Sent: Thursday, July 22, 2010 3:41 PM To: profox@leafe.com Subject: RE: An interview I gave for MarketWatch Well, as far as I am concerned, I would have preferred to have a partial port of VFP project to

Re: Buufer overrun detected

2010-07-23 Thread Alan Bourke
Looks like it may be a C++ library / Windows 7 incompatibility: http://stackoverflow.com/questions/1752998/how-to-disable-buffer-overflow-checking-in-the-visual-c-runtime -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to:

RE: An interview I gave for MarketWatch

2010-07-23 Thread Alan Bourke
On Fri, 23 Jul 2010 10:13 +0300, ReportSculptor ad...@report-sculptor.com wrote: Have a look at this screenshot: http://www.class-software.eu/screenshot.png Well, that one is simply not doable in VFP. I don't see anything there that you couldn't do in VFP. -- Alan Bourke alanpbourke

RE: Export to Excel (WAS: VFP9 - neet to work with large character fields)

2010-07-23 Thread Dave Crozier
Angel, You can't use attachments on the list... You will have to send them direct Dave C -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Angel Dario Rodriguez Sent: 23 July 2010 05:01 To: ProFox Email List Subject: Re: Export to Excel

RE: Export to Excel (WAS: VFP9 - neet to work with large character fields)

2010-07-23 Thread Richard Kaye
Hi Angel, The Profox list doesn't allow file attachments. Did you try copying to TYPE XLS instead of CSV? rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Angel Dario Rodriguez Sent: Friday, July 23, 2010 12:01 AM To:

[NF] Win7 shortcuts

2010-07-23 Thread Stephen Russell
OS now has shortcuts for repetative requests. http://www.guidingtech.com/4535/windows-7-keyboard-shortcut/ 1. Ctrl+Shift+N to Create a New Folder HTH -- Stephen Russell Sr. Production Systems Programmer CIMSgts 901.246-0159 cell ___ Post Messages

Free PartnerPoint Registration

2010-07-23 Thread William Sanders / EFG
PartnerPoint is some 3rd party portal for MS Partners, where clients and other partners can 'do some search' They've waived the 30 dollar application fee this week - can join for free, get listed for free.

VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
OK - this problem started a couple of weeks ago. Its happening on this small application I have been been working on for about a month now - which I recently added the Spell Checker to (after posting to the list here). Anyway - about a 1 or 2 weeks ago - this strange thing started happening.

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Alan Lukachko
Do you have a destroy event for the Spell Checker? Or a destroy event on the exit from the form? -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Kurt Wendt Sent: Friday, July 23, 2010 11:34 AM To: profoxt...@leafe.com Subject: VFP

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
Hey Alan - thanks for your reply. I'm not sure about the Spell Checker - although, it was only added a couple of days into my application - while this Hanging problem has been happening for a few weeks now! The QUIT button on my form doesn't have any Destroy - but, does have the following:

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Rick Schummer
When I hit the Quit button on my Form - the Form immediately goes away - but, then everything pauses and VFP hangs for about - 30 seconds. Now - that's not a long time - but, its PAINFUL when I keep trying to test things - but, get held up at the end of each Test - waiting for VFP to respond and

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Allen
Is there network data? Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Rick Schummer Sent: 23 July 2010 17:56 To: profoxt...@leafe.com Subject: RE: VFP is Hanging on Form Exit - and Driving Me NUTS! When I hit the Quit button

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
Hey Rick, I don't think its related to the Spell Checker - since the problem started long before I added it to my application. However - you path and folders suggestion got me thinking. At one point - initially - I had been building this application on my local C: drive - since I prototyped the

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
Yes. -K- -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Allen Sent: Friday, July 23, 2010 11:59 AM Is there network data? Al -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Jack Skelley
Kurt: To you have an object that has its controlsource a table? If so set the controlsource to null then release the form. In one of my forms hung exactly what you are describing and when I removed the controlsource the form closed as expected. Regards, Jack Skelley

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Dave Crozier
Kurt, Have you returned back a stack level from within a with...endwith block. That can cause the same problem and also, if it is Windows 7 then I get an almost daily occurrence of Windows 7 hanging in the same way. Mostly from entering the Control Panel but occasionally on developing VFP in VFP9

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
I just tried that - but, it didn't seem to help. Maybe I'm not doing it quite right. I have 2 Grids, in Page 2 3 of a PageFrame. Each grid is tied to a DBF. Here is the code I tried to use to disconnect from the Data upon hitting QUIT: ThisForm.Pageframe1.Page2.grdTimelines.RecordSource = -K-

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Jack Skelley
Kurt: The object that was hanging for me was a combobox. On my grids I issue: thisform.grid1.recordsourcetype = 1 alias thisform.grid1.recordsource = select GridTable use thisform.release() Regards, Jack From:

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
Its true - I also have a ComboBox or 2 tied to data. I will disconnect them from the data as well - before doing the Release. And - FYI - its also Slow when trying to open the Form to do editing. Although, that doesn't annoy me nearly as much - since I can just keep it open - and just keep

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Malcolm Greene
Kurt, 1. I would try adding a wait window some message after each of the following commands to see if something one of these commands is doing is causing the delay. (I don't see anything unusual, but this would eliminate the non-obvious) snipped RELEASE Last_User, Last_TDate (and a bunch more

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Malcolm Greene
Kurt, And - FYI - its also Slow when trying to open the Form to do editing. ***Being mindful to make a backup of your scx/sct files first***, you can open a form and pack it (eg. forms are stored in a dbf file format) use form.scx pack use If you making lots of changes to a form, you might be

[NF] Light-weight/very-simple version control for Windows?

2010-07-23 Thread Malcolm Greene
Looking for a recommendation for a light-weight/very-simple, open source version control utility for Windows. By light-weight, I mean the ability to xcopy an exe (and dll's) to a folder and begin using the product with a local data source like SQLite ... but with the ability to move to a

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
For your Suggestion #1 - I actually already did a Suspend and did a Step thru of each command - and it seemed to run fine on each command - no slow down at all. As for your suggestion #2 - I goofed on my original message. I actually DO have a Destroy for the Form - since that is where The Spell

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
I've opened Reports and Forms in the past like a DBF as you mentioned below. I didn't know - though - that the Form could fill w/Fluff after Multiple revisions. Now - I figured I would see a lot of Deleted records if I did this - and therefore the reason to run the Pack command. But, alas - I

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Malcolm Greene
Kurt, 1. What's in your Destroy method? 2. Are your forms inherited from another form class? 3. I really like Rick's suggestion to use the Coverage Profiler to isolate the problem. (This is where I would spend my time). I know its yet another tool to learn, but its also a good tool to learn as

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Malcolm Greene
Kurt, Now - I figured I would see a lot of Deleted records if I did this - and therefore the reason to run the Pack command. But, alas - I didn't find any of them - and there were only 118 records. I ran the Pack - and no difference. Your record count may not change, but I bet your *.SCT

Re: Export to Excel (WAS: VFP9 - neet to work with large character fields)

2010-07-23 Thread Angel Dario Rodriguez
Yes, but spefically, the file must be left in CSV format. De: Richard Kaye rk...@artfact.com Para: profox@leafe.com profox@leafe.com Enviado: vie,23 julio, 2010 07:09 Asunto: RE: Export to Excel (WAS: VFP9 - neet to work with large character fields) Hi Angel,

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
Hey Malcolm - thanks for all your feedback! Although - sorry to disappoint - the SCT size didn't change at all - and just remained at 69KB. As for the SCX - most of the fields are Memo fields - so its hard to just scan everything - like if it was purely readable in the Browse window. I did open

Re: Export to Excel (WAS: VFP9 - neet to work with large character fields)

2010-07-23 Thread Angel Dario Rodriguez
Do you have another e-mail that can accept attachments? De: Richard Kaye rk...@artfact.com Para: profox@leafe.com profox@leafe.com Enviado: vie,23 julio, 2010 07:09 Asunto: RE: Export to Excel (WAS: VFP9 - neet to work with large character fields) Hi Angel,

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Kurt Wendt
The only thing in the Destroy is what I mentioned before - in regards to setting some spellcheck object to NULL. My main screen is just a simple Form - not a class. However, all the Spell Check stuff IS classes based! The Coverage Profiler does look like a good option to explore. I just can't

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Richard Kaye
Also, try COMPILE FORM myform as that will refresh the compiled code stored in the SCX/SCT. That can sometimes clear up mysterious behavior. rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Malcolm Greene Sent: Friday, July 23,

RE: Export to Excel (WAS: VFP9 - neet to work with large character fields)

2010-07-23 Thread Richard Kaye
I'm happy to offer suggestions based on your description of your problem but I can't go any further than that. rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Angel Dario Rodriguez Sent: Friday, July 23, 2010 4:36 PM To:

RE: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread John Weller
Hi Kurt, The technique I use is to make a secure copy of the form then delete controls one at a time until the problem goes away. The last control to be deleted is the cause of the problem. I can then investigate why that control is causing the problem and fix it on the secure copy. John

Re: VFP is Hanging on Form Exit - and Driving Me NUTS!

2010-07-23 Thread Vincent Teachout
John Weller wrote: Hi Kurt, The technique I use is to make a secure copy of the form then delete controls one at a time until the problem goes away. The last control to be deleted is the cause of the problem. I can then investigate why that control is causing the problem and fix it on the

Delete IDX files on Shutdown

2010-07-23 Thread Tina Currie
Hi everyone, This should be a no-brainer, but I'm pregnant so got no brain right now. Throughout my app if I need a temporary index then I usually just issue INDE ON FIELD TO SYS(3) - knowing that will give me a whole bunch of .idx files to delete when app closes. In my shutdown.prg I put:

Re: Delete IDX files on Shutdown - Retracted

2010-07-23 Thread Tina Currie
Der. Talk about pregnant slushy brain! I lost the IF statement and just issued ERASE *.idx Wow... only 35 more weeks of no brain...THAT's gonna be fun for my clients J --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept)

Re: Delete IDX files on Shutdown

2010-07-23 Thread Richard Quilhot
You cound use ADIR() to create an array then step though it to delete your files. Rick Q quilh...@gmail.com On Fri, Jul 23, 2010 at 10:13 PM, Tina Currie t...@datahouse.com.au wrote: Hi everyone, This should be a no-brainer, but I'm pregnant so got no brain right now. Throughout my

Re: Delete IDX files on Shutdown

2010-07-23 Thread Jack Skelley
Tina: How about: Local array laIdx(1,5) Local lncount, i LnCount = 0 LnCount = adir(laIdx, *.idx) If lnCount 0 then For i = 1 to lnCount Erase (laIdx(i, 1)) Endfor Endif Regards, Jack Skelley Sent from my iPod On Jul 23, 2010, at 10:13 PM, Tina Currie t...@datahouse.com.au wrote:

Re: Export to Excel (WAS: VFP9 - neet to work with large character fields)

2010-07-23 Thread Angel Dario Rodriguez
Thank you very much. De: Richard Kaye rk...@artfact.com Para: profox@leafe.com profox@leafe.com Enviado: vie,23 julio, 2010 16:58 Asunto: RE: Export to Excel (WAS: VFP9 - neet to work with large character fields) I'm happy to offer suggestions based on your

Re: Delete IDX files on Shutdown - Retracted

2010-07-23 Thread Tracy Pearson
Congratulations! I always told my wife she had prego brain. Good luck being a parent. On 7/23/2010 10:22 PM, Tina Currie wrote: Der. Talk about pregnant slushy brain! I lost the IF statement and just issued ERASE *.idx Wow... only 35 more weeks of no brain...THAT's gonna be fun for my

RE: Delete IDX files on Shutdown

2010-07-23 Thread Tina Currie
Thanks Jack and Rick - I've not used adir() before - will put that in place now. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: