Synchronized Edit Tables (OpenInsight 32-bit Specific)
At 28 JUL 2004 10:56:30AM Marty Rosenbloom wrote:
Hi,
I have two edit tables next to each other. I would like the two tables to be in sync with each other. I will only have a vertical scroll bar on one table. When I scroll down or up on the one table, I would like the other table to scroll also. I have tried Get_ and Set_Property "VPOSITION" but it doesn't work. The event is on the master edit table.
TIA,
Marty
At 28 JUL 2004 02:13PM Richard Hunt wrote:
Marty,
In the "VSCROLL" event on TABLE_1, put the following codeā¦
TOPPOS=GET_PROPERTY(CTRLENTID,'TOPPOS')
RESULT=SET_PROPERTY(@WINDOW:'.TABLE_2','TOPPOS',TOPPOS)
Works for me.
At 28 JUL 2004 07:01PM Marty Rosenbloom wrote:
Hi Rich,
And now it works for me. Thank you!
Marty
At 28 JUL 2004 08:04PM Don Miller wrote:
Me too.
Don
At 29 JUL 2004 08:30AM Colin Rule wrote:
Dont forget to do the reverse on the other table too.
Users can use the keyboard to scroll too.
Colin