Hallo all,
I am currently using a SUD with a Table element that I use to list file names to feed into the autosequence. I have the RowMoveAllowed property enabled to allow the user to change the order of the rows, and hence the order of the files being sent into the autosequence.
Once the user has moved a row up or down, the row number stays the same, so when I use the following code:
'####################################################
For I=1 To Tb2.rows.count 'LB_Files.Items.count
FileList_(1,i)=Tb2.rows(i).cells(1).value
'msgbox FileList_(1,i)
Next
'####################################################
the order of the files has remained unchanged and the user's changes have no effect. Is there a work-a-round for this problem?
Thanks, Jeff