Thanks Markus
There is no direct way to trap end of resizing. But there is a tricky way to do
it, based on the sequence of events handling by Paradox. I used this technics in
ProView.
In the form's menuAction:
if eventInfo.isPreFilter() then
;// This code executes for each object on the form
else
;// This code executes only for the form
if eventInfo.id()=MenuControlSize then
dodefault
errorlog(usererror+1,"");this line puts an error event to the event's stack
endif
endIf
In the form's error method:
if eventInfo.isPreFilter() then
;// This code executes for each object on the form
else
;// This code executes only for the form
if eventinfo.errorcode()=usererror+1 then msginfo("","Resizing finished")
endif endIf
:-)
Vladimir Menkin