PB.怎么知道数据窗口中哪些行修改了?

 怎么知道数据窗口中哪些行修改了?

   long i

   dwitemstatus lds_status

   for i = 1 to dw_name.rowcount()

     lds_status = dw_name.getitemstatus( i, 0, primary! )

     if lds_status <> notmodified! then

         //本行修改了

     end if

   next

你可能感兴趣的:(PB.怎么知道数据窗口中哪些行修改了?)