James,
Thank You very much, it does exactly, what I'm trying to do.
It is a part of my question, how to connect a Dialog to a MDI-child.
viewtopic.php?f=3&t=20559&p=109122#p109122from Rao :
The real solution is to recheck the issue of transparency of all controls once again,
rather than to look for workarounds of using dialogs.As long there is no other working solution, we could use it.
To make it complete, Minimize = Dialog:Hide(), Maximize = Dialog:Show()
otherwise, the Dialog stays on Screen.
...
...
ACTIVATE WINDOW oWndEdit ;
ON MOVE ( oWndEdit:CoorsUpdate(), nTop:= oWndEdit:nTop, ;
nTop:= nTop + if(oWndEdit:
oTop!=nil,oWnd:
oTop:nHeight,0), ;
nLeft:= oWndEdit:nLeft, nLeft:= nLeft + if(oWndEdit:oLeft!=nil,oWnd:oLeft:nWidth,0), ;
oWndCtrl:Move( nTop + 320, nLeft + 80 ) ) ;
ON RESIZE oWndCtrl:Move( oWndEdit:nTop() + 320, oWndEdit:nLeft() + 80 )
Dialog-resize needed, if Child-bottom < ( Dialog-top + Dialog-height )
or if Child-width < ( Dialog-left + Dialog-width )
Best Regards
Uwe