Home > database >  Pb added wrong
Pb added wrong

Time:09-16

I in data window itemfocuschanged events, automatically add other data in a table to specify a running running normally, but is to delete rows error, data should be deleted changes, how to modify the program ~ ~ ~

CodePudding user response:

The original poster can't post the code?

Delete bad line, is caused such

FOR ll_RowOn=1 TO dw_1. RowCount ()
Dw_1. DeleteRow (ll_RowOn)
NEXT

Had changed to the following
FOR ll_RowOn=dw_1. RowCount () to step 1-1
Dw_1. DeleteRow (ll_RowOn)
NEXT
  • Related