Re: How to tell if data on a grid has been changed?

2008-05-09 Thread Sytze de Boer
I always use a simple WHEN and VALID routine to do exactly what you're asking sytze On Sat, May 10, 2008 at 4:23 AM, Vince Teachout <[EMAIL PROTECTED]> wrote: > I should know this, but I'm drawing a blank. > > I have a grid on a vfp native table, each cell of the grid allows editing. > > I just n

Re: How to tell if data on a grid has been changed?

2008-05-09 Thread MB Software Solutions General Account
Vince Teachout wrote: > Tracy Pearson wrote: >> Have a look at these: >> >> GetNextModified() >> GetFldState() >> >> > GetFldState() was the one I couldn't remember, but GetNextModified() is > a cool new (to me) tool that I haven't played with, and will fit the > need better. Thanks! GetFld

Re: How to tell if data on a grid has been changed?

2008-05-09 Thread Kenneth Kixmoeller/fh
FWIW, all of my data entry controls keep track themselves of whether the user has made a change to their contents. That way, I can just spin through the controls to find out what has been changed, which I find much simpler than using the after-the-fact functions. Ken On May 9, 2008, at 11:3

Re: How to tell if data on a grid has been changed?

2008-05-09 Thread Vince Teachout
Tracy Pearson wrote: > Have a look at these: > > GetNextModified() > GetFldState() > > GetFldState() was the one I couldn't remember, but GetNextModified() is a cool new (to me) tool that I haven't played with, and will fit the need better. Thanks! _

Re: How to tell if data on a grid has been changed?

2008-05-09 Thread MB Software Solutions General Account
Vince Teachout wrote: > I should know this, but I'm drawing a blank. > > I have a grid on a vfp native table, each cell of the grid allows editing. > > I just need to know if a user changed any value in any cell of any > record, so I can update the "updated by" field in the table. > > I know th

RE: How to tell if data on a grid has been changed?

2008-05-09 Thread Tracy Pearson
Have a look at these: GetNextModified() GetFldState() -Original Message- From: Vince Teachout Sent: Friday, May 09, 2008 12:23 PM I should know this, but I'm drawing a blank. I have a grid on a vfp native table, each cell of the grid allows editing. I just need to know if a user chan

How to tell if data on a grid has been changed?

2008-05-09 Thread Vince Teachout
I should know this, but I'm drawing a blank. I have a grid on a vfp native table, each cell of the grid allows editing. I just need to know if a user changed any value in any cell of any record, so I can update the "updated by" field in the table. I know there's an easy way to do this, but the