RE: [WC] World Cup

2014-06-27 Thread Adam Buckland
Yes no passion is there https://www.youtube.com/watch?v=J4-bobBbZGc From: ProFox [profox-boun...@leafe.com] on behalf of Adam Buckland [adam.buckl...@eurohill.com] Sent: 26 June 2014 21:59 To: ProFox Email List Subject: [WC] World Cup Well done to

Re: Is ASCAN() Really Type-Insensitive?

2014-06-27 Thread Laurie Alvey
It certainly seems so in VFP9 SP2. This code works as expected: LOCAL i As Integer, k As Integer, d As Date LOCAL ARRAY a[26,3] d = {^2014/01/01} FOR i = 1 TO 26 k = i + 64 a[i,1] = CHR(k) a[i,2] = k a[i,3] = d + k ENDFOR ? ASCAN(a, M, 1, -1, -1, 15) 13 ? ASCAN(a, 70, 1, -1, -1, 15) 6 ?

RE: Is ASCAN() Really Type-Insensitive?

2014-06-27 Thread Allen
I have never had a problem with ascan with types. So I would agree. Al -Original Message- It certainly seems so in VFP9 SP2. This code works as expected: I think VFP will only search those columns which match the data type of the input expression.

Re: Copying an object, but not having it share the same memory space...iow, I want two SEPARATE objects in memory

2014-06-27 Thread Thierry Nivelet
Hi Alan, Your solution works fine for objects having their properties as in the class OP was asking for cloning object with modified properties. I'm not sure what DoCopy(loMyCopy) effectively does. Thierry Nivelet FoxInCloud Give your VFP app a second life in the cloud http://foxincloud.com/

Focus not in correct place

2014-06-27 Thread Kent Belan
Happy Friday !! I have been trying to fix this problem for a while, but I am stumped. I have a VFP9 form that has several containers on the form. Depending on the menu item selected, the program will load other containers inside the main containers on the form. I have one container that on the

Re: Focus not in correct place

2014-06-27 Thread Fred Taylor
For the fields that the text boxes are bound to, is the table at EOF? Fred On Fri, Jun 27, 2014 at 7:52 AM, Kent Belan kbe...@mchsi.com wrote: Happy Friday !! I have been trying to fix this problem for a while, but I am stumped. I have a VFP9 form that has several containers on the form.

RE: Is ASCAN() Really Type-Insensitive?

2014-06-27 Thread Ken Dibble
I have never had a problem with ascan with types. So I would agree. Al It certainly seems so in VFP9 SP2. This code works as expected: I think VFP will only search those columns which match the data type of the input expression. Thanks everybody for your help on this. Another possible

RE: Focus not in correct place

2014-06-27 Thread Paul Newton
I had a similar problem and solved it like this: In one of your procedures define a timer as follows Define Class TempTimer As Timer Interval = 1000 Procedure Timer() Thisform.Release() EndProc EndDefine Add a property lFirstActivate (default value .T.) to

RE: Focus not in correct place

2014-06-27 Thread Kent Belan
The text boxes are bound to business object properties so not directly bound to data fields. -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Fred Taylor Sent: Friday, June 27, 2014 10:58 AM To: ProFox Email List Subject: Re: Focus not in correct place For

Re: Focus not in correct place

2014-06-27 Thread Koen Piller
Hi, Try with Tab-Order (Main menu -TabOrder -Assign interactively) and set to tab sequence. Regards, Koen 2014-06-27 16:57 GMT+02:00 Fred Taylor fbtay...@gmail.com: For the fields that the text boxes are bound to, is the table at EOF? Fred On Fri, Jun 27, 2014 at 7:52 AM, Kent Belan

RE: Focus not in correct place

2014-06-27 Thread Kent Belan
Hello Paul, This looks very interesting, but unfortunately it did not help with my problem. I know the timer fired to release the temp form because I put a wait window msg in the timer method, but the container still has the same problem with the lost focus -Original Message- From:

Visual FoxPro 9 on a Windows 7 pad

2014-06-27 Thread Wes Wilson
Has anyone done a VFP 9 program on a Windows 7 pad?   The exe and the data (small dataset) will reside on the pad. Any suggestions?  Cautions?    Wes Wilson, President ERW Custom Programming, Inc. Crescent Lake Plaza 5459  Elizabeth Lake Rd. Waterford, MI 48327 (248) 683-4182 www.erw.com  

RE: Visual FoxPro 9 on a Windows 7 pad

2014-06-27 Thread Tracy Pearson
Wes Wilson wrote on 2014-06-27: Has anyone done a VFP 9 program on a Windows 7 pad?   The exe and the data (small dataset) will reside on the pad. Any suggestions?  Cautions?    Wes Wilson, President ERW Custom Programming, Inc. Crescent Lake Plaza 5459  Elizabeth Lake Rd.

Re: Visual FoxPro 9 on a Windows 7 pad

2014-06-27 Thread Richard Quilhot
I've done one for a windows surface pro running win 8.1. Other than making everything bigger so you can see it, runs fine. On Jun 27, 2014 11:50 AM, Wes Wilson erwweswil...@yahoo.com wrote: Has anyone done a VFP 9 program on a Windows 7 pad? The exe and the data (small dataset) will reside on

Re: Focus not in correct place

2014-06-27 Thread Fred Taylor
Is there a Pageframe on the form? I've seen an issue that the only thing that seems to work is to set the form.LockScreen property, cycle from the last page to first (pageframe.ActivePage) and reset the form.LockScreen. Fred On Fri, Jun 27, 2014 at 8:48 AM, Kent Belan kbe...@mchsi.com wrote: