podrían verificar si las coordenadas de las ventanas (anexo ejemplo) se actualizan al mover dicha ventana?
he revisado lo que he podido y nada, al mover la ventana no actualiza las coordenadas, lo cual debería actualizar.
- Code: Select all Expand view RUN
FUNCTION main()
LOCAL owin, omenu
MENU omenu
MENUITEM "Child" ACTION childwin( owin )
ENDMENU
DEFINE WINDOW owin MENU omenu MDI
owin:cTitle( "Izquierda: "+ AllTrim(Str(owin:nLeft)) +" Derecha: "+ AllTrim(Str(owin:nRight)))
owin:bMoved := {|| owin:cTitle( "Izquierda: "+ AllTrim(Str(owin:nLeft)) +" Derecha: "+ AllTrim(Str(owin:nRight)))}
ACTIVATE WINDOW owin
RETURN NIL
FUNCTION childwin( oWnd )
LOCAL ochild
DEFINE WINDOW ochild MDICHILD OF oWnd
ochild:cTitle( "Izquierda: "+ AllTrim(Str(ochild:nLeft)) +" Derecha: "+ AllTrim(Str(ochild:nRight)))
ochild:bMoved := {|| ochild:cTitle( "Izquierda: "+ AllTrim(Str(ochild:nLeft)) +" Derecha: "+ AllTrim(Str(ochild:nRight)))}
ACTIVATE WINDOW ochild
RETURN NIL
Gracias por anticipadas