How to resize a xBrowser if I the window is resized
I tried:
ACTIVATE WINDOW oWnd ON RESIZE ( oBrw:nRight := oWnd:nWidth() - 17,; oBrw:nBottom := oWnd:nHeight()- 100 )
but didn't work.
Thanks in advance
Otto
How to resize a xBrowser if I the window is resized
I tried:
ACTIVATE WINDOW oWnd ON RESIZE ( oBrw:nRight := oWnd:nWidth() - 17,; oBrw:nBottom := oWnd:nHeight()- 100 )
but didn't work.
Thanks in advance
Otto
Try using oBrw:Move() method.
EMG
Thank you for your help, Enrico.
//oBrw:Move( nTop, nLeft, nWidth, nHeight, lRepaint ) works!