RE: Pack memo doesn't pack deleted records, does it?

2013-05-14 Thread Dave Crozier
Correct, I simply reclaims the space used when duplicate memo's are created as transient memo field updates i.e bloat. Dave -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Michael Madigan Sent: 14 May 2013 01:13 To: profox@leafe.com Subject: Pack memo

Re: Pack memo doesn't pack deleted records, does it?

2013-05-14 Thread Michael Madigan
Thanks.  And boy do I have bloat.  From: Dave Crozier da...@flexipol.co.uk To: ProFox Email List profox@leafe.com Sent: Tuesday, May 14, 2013 5:05 AM Subject: RE: Pack memo doesn't pack deleted records, does it? Correct, I simply reclaims the space used

Re: Pack memo doesn't pack deleted records, does it?

2013-05-14 Thread Christof Wollenhaupt
And boy do I have bloat. Check if you have code along the lines of REPLACE memo WITH memo + string This line always appends the whole memo field to the end of the file, even if there would be free space in the current block. Updates within a block only occur if the table is opened exclusively.

VFP6: Basic cursor behavior Question

2013-05-14 Thread Desmond Lloyd
Good Morning, This absolutely baffles me. In a read, waiting on several fields what is the behavior called that moves the cursor to the next field (with out a tab) when it is filled in. Old VFP6 app, normal behavior is for the cursor to advance. Have two users where this isn't happening

RE: VFP6: Basic cursor behavior Question

2013-05-14 Thread Kurt Wendt
Let's say U have a field that 4 char's wide. If you use a PICT Command on the GET - and define exactly 4 char's in the PICT - then that should do it - as when the user enters in 4 char's - it should automatically go to the next field. Same way on a Screen Form in VFP, but, not PICT - rather, you

Access windows file attributes from VFP

2013-05-14 Thread Joe Yoder
I want to be sure that IIF files I create in a VFP program are imported into Quick Books. My current thought is to have the system maintain a table of the output IIF files created with file name, creation timestamp and transfer timestamp. This information will allow the system to refuse

RE: Access windows file attributes from VFP

2013-05-14 Thread Kurt Wendt
For File Properties of the OS - isn't there a SYS() Command for that. Just off the top of my head - I think there is... -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Joe Yoder Sent: Tuesday, May 14, 2013 11:00 AM To: profoxt...@leafe.com

Re: Access windows file attributes from VFP

2013-05-14 Thread Alan Bourke
http://www.news2news.com/vfp/?example=177ver=vcpp ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable

Re: VFP6: Basic cursor behavior Question

2013-05-14 Thread Desmond Lloyd
Yes, true. But also if set confirm is on, cursor will stop at the end of the field and stay there! 8-) On 14 May 2013 09:46, Kurt Wendt k...@isssusa.com wrote: Let's say U have a field that 4 char's wide. If you use a PICT Command on the GET - and define exactly 4 char's in the PICT -

Global TextBox Change on a Form During Runtime...

2013-05-14 Thread Kurt Wendt
Is there an easy way to do this. I think it WAS Mentioned here on the Forum not too long ago. Like, if all the TextBoxes on a Form start off as Read-Only. But, if the User hits a Modify button on the screen - and therefore we need to Flip ALL Text Boxes to allow the user to Edit the contents.

Re: Global TextBox Change on a Form During Runtime...

2013-05-14 Thread Jean MAURICE
ThisForm.setall() ? HTH The Foxil ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable Archive:

RE: Global TextBox Change on a Form During Runtime...

2013-05-14 Thread Kurt Wendt
That looks REALLY Familiar - and I know I've even used that command in the past. But, you know - getting old - things just slip out from the memory stream... Thanks Foxil! -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Jean MAURICE Sent:

RE: Access windows file attributes from VFP

2013-05-14 Thread Joe Yoder
I went through the list and didn't see one. I think I needed something like this earlier and had to use the API but don't remember how it turned out. - Joe On Tuesday, May 14, 2013 11:04 AM, Kurt Wendt wrote: Date: Tue, 14 May 2013 11:04:59 -0400 From: Kurt Wendt To: profoxt...@leafe.com cc:

Re: Access windows file attributes from VFP

2013-05-14 Thread Jean MAURICE
something like : DECLARE INTEGER GetFileAttributes in win32api string @ FUNCTION file_int_properties _GetFileAttributes LPARAMETERS lpFileName AS string LOCAL m.lnAttributs, lcAttributs lnAttributs= GetFileAttributes(@m.lpFileName) IF m.lnAttributs=-1 RETURN ''

RE: Access windows file attributes from VFP

2013-05-14 Thread Kurt Wendt
Sorry - I guess that was a BAD WAG - but, good thing the Foxil came to the Rescue! :-) -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Joe Yoder Sent: Tuesday, May 14, 2013 12:13 PM I went through the list and didn't see one. I think I needed

RE: [NF] MS to Release Windows 8.1

2013-05-14 Thread Gene Wirchenko
At 10:57 2013-05-10, you wrote: All joking aside, a sincere apology can clear the air wonderfully. In my case, it literally* improved my eyesight. * Yes, literally. It actually happened. GuiltStressHypertensionVision problems, eh? I do not think so, but whatever the mechanism,

Re: Access windows file attributes from VFP

2013-05-14 Thread Joe Yoder
Thanks Jean for sharing your code! The only problem is that it gets file attributes rather than file time. I have a printed copy of an example from News2News, Inc. that uses the GetFileTime function. I am more concerned about whether the times are reliable between Windows XP and 7 and whether

report to pdf

2013-05-14 Thread Gary Jeurink
Is there an easy way to send a report to a document and then make it into a pdf instead of printing. I want to email some 2-col reports instead of snail mail hard copy reports. The hard way. export to text fle, import to word, select all, make 2-col, save as doc, open with open office, export to

Re: Pack memo doesn't pack deleted records, does it?

2013-05-14 Thread Michael Madigan
Yeah, that's what I have.  What do you do instead of that? From: Christof Wollenhaupt christof.wollenha...@foxpert.com To: profox@leafe.com Sent: Tuesday, May 14, 2013 6:12 AM Subject: Re: Pack memo doesn't pack deleted records, does it? And boy do I have

Re: report to pdf

2013-05-14 Thread M Jarvis
http://www.frx2any.com/?? -- Matt Jarvis Eugene, Oregon USA ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list:

RE: report to pdf

2013-05-14 Thread Kurt Wendt
But - even VFP itself can output PDF - if you have PDF program on your PC - like CutePDF (Free). -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of M Jarvis Sent: Tuesday, May 14, 2013 4:09 PM To: profoxt...@leafe.com Subject: Re: report to pdf

RE: report to pdf

2013-05-14 Thread John Weller
Try FoxyPreviewer, it will give the opportunity to print to PDF. John Weller 01380 723235 07976 393631 -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Gary Jeurink Sent: 14 May 2013 21:02 To: profoxt...@leafe.com Subject: report to pdf Is

Re: report to pdf

2013-05-14 Thread Frank Cazabon
Try FoxyPreviewer, free and very easy to use: https://foxypreviewer.codeplex.com/ Frank. Frank Cazabon On 14/05/2013 04:02 PM, Gary Jeurink wrote: Is there an easy way to send a report to a document and then make it into a pdf instead of printing. I want to email some 2-col reports instead

Vfp9-Mouse size

2013-05-14 Thread Sytze de Boer
Hi folk I have a small app where I want the mouse to be much more obvious than it is. The form is a very simple form with about 15 Text boxes I have tried the _screen.mousePointers=10 and various other numbers, but it does not give me what I'm after. (In the init of the form) It displays a

RE: Vfp9-Mouse size

2013-05-14 Thread Richard Kaye
Have you tried setting your mousepointer property as desired in the form itself? -- rk -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Sytze de Boer Sent: Tuesday, May 14, 2013 5:44 PM To: profoxt...@leafe.com Subject: Vfp9-Mouse size Hi folk I

Re: Global TextBox Change on a Form During Runtime...

2013-05-14 Thread Dan Covill
On 05/14/13 09:00 AM, Kurt Wendt wrote: I suspect it's a One line command - but, not sure what it is - and, not even sure where to look in online help for something like. Thisform.SetAll(ReadOnly, .F., TextBox) Dan ___ Post Messages to:

Re: Vfp9-Mouse size

2013-05-14 Thread Sytze de Boer
Yes I have It does not matter what number I give it, the mouse looks the same On Wed, May 15, 2013 at 9:52 AM, Richard Kaye rk...@artfact.com wrote: Have you tried setting your mousepointer property as desired in the form itself? -- rk -Original Message- From: ProfoxTech

Re: Global TextBox Change on a Form During Runtime...

2013-05-14 Thread Kurt @ VR-FX
HEy Dan - U must be in a Different Time Zone - cause the Foxil came to the rescue for me about 9 hours prior to you! :-) But - hey - thanks for the reply. Funny thing is - and I know others do it kinda like me at times - trying to beat others to it - that is - giving an answer. L8r, -K-

Re: Vfp9-Mouse size

2013-05-14 Thread Frank Cazabon
Sytze, Personally, if an app messed with my windows settings like that, it wouldn't stay installed long. :) But, maybe it's got to do with thisform.themes? Just a wag Sytze de Boer sytze.k...@gmail.com wrote: Yes I have It does not matter what number I give it, the mouse looks the same On

Re: Vfp9-Mouse size

2013-05-14 Thread Ken Dibble
Yes I have It does not matter what number I give it, the mouse looks the same Every visual control has a MousePointer property. If you have a very busy form the mouse pointer isn't likely to be over the form itself much of the time. If you only set MousePointer for the form, then as soon as

Re: Access windows file attributes from VFP

2013-05-14 Thread Jean MAURICE
I'll translate it in 'english' and I'll upload it on the download page ... Be patient for 2 or 3 days ... The Foxil Le 14/05/2013 18:56, Joe Yoder a écrit : Thanks Jean for sharing your code! ___ Post Messages to: ProFox@leafe.com Subscription