Question !!

  • Thread starter Thread starter News charter
  • Start date Start date
N

News charter

How would you tell what information in a datawindow was changed by the user?
What command would you use to identify datawindow records that were changed
by the user?

Thanks.
 
News said:
How would you tell what information in a datawindow was changed by
the user? What command would you use to identify datawindow records
that were changed by the user?

I'm not sure what a datawindow is but if it has an underlying DataSet or
DataTable, the GetChanges method of ither class will return modified
rows. In addition, you can pass a DataRowState parameter to indicate
that you're only interested in rows that have been added, deleted,
detached, modified or unchanged.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Back
Top