mistermusic
Programmer
Hi there
I am using PB 11.5
I have a problem with a datawindow column that has its autosize.height property on YES.
I want to be able to change the columns X-Position dynamicly. The problem is that after I modify the datawindow the position of the column is still displaied at its original position. However when I click that control, it moves to the new position. But as soon as I click another column, it returns to its old position...
I am using this code:
-------------------------------------------
LONG l_x
l_x = long(dw_2.describe("autosizefield.x"))
l_x = l_x + 20
dw_2.modify("autosizefield.x=" + string(l_x))
-------------------------------------------
Thanks for your inputs....
I am using PB 11.5
I have a problem with a datawindow column that has its autosize.height property on YES.
I want to be able to change the columns X-Position dynamicly. The problem is that after I modify the datawindow the position of the column is still displaied at its original position. However when I click that control, it moves to the new position. But as soon as I click another column, it returns to its old position...
I am using this code:
-------------------------------------------
LONG l_x
l_x = long(dw_2.describe("autosizefield.x"))
l_x = l_x + 20
dw_2.modify("autosizefield.x=" + string(l_x))
-------------------------------------------
Thanks for your inputs....