Hello
If have a DCBROWSE of an array. The browse itself has 13 visible lines
This array can contain 1 to 999 sub arrays.
After every rebuild of that array, and refreshAll of DCBROWSE, the first item is visible on the first browse line.
Assume the array has 215 items.
How can I refresh the DCBROWSE and instruct to start with item 165 of the array (fist line in the browse), and set the selected row on line 7?
Suggestions are welcome.
Regards,
Jack Duijf
Chage DCBROWSE visible data
Chage DCBROWSE visible data
Regards,
Jack Duijf
Jack Duijf
Re: Chage DCBROWSE visible data
Try this:
Code: Select all
oBrowse:arrayElement := 165
oBrowse:refreshAll()
For i := 1 TO 6
oBrowse:down()
Next
oBrowse:forceStable()
The eXpress train is coming - and it has more cars.
Re: Chage DCBROWSE visible data
Hello Roger,
Thanks,
That is much more simple then I expected.
Jack
Thanks,
That is much more simple then I expected.
Jack
Regards,
Jack Duijf
Jack Duijf