In my application I have defined a window oWnd like this :
- Code: Select all Expand view
DEFINE WINDOW oWnd FROM xTop,xLeft TO xBottom,xRight ...
After having changed the sizes of oWnd in a certain dialog box, I tried to change the sizes of my window (unfortunately without any succes) with this code :
- Code: Select all Expand view
oWnd:nTop() := xTop
oWnd:nLeft() := xLeft
oWnd:nBottom() := xBottom
oWnd:nRight() := xRight
oWnd:Refresh()
What do I do wrong ?
Of course, quitting and restarting my application solves the problem too, but that is not what I want.
Thanks a lot in advance.