Shawn,
Will Hetrick's question is exactly that i was afraid of.
Also, as i sent the first version of the component to some friends, the fist thing they said was : sounds good, but where is the manual ? You know last part of the story, as the first thing i sent to you after was this |beep| doc file, as at this time, i was adding the object handling in collections and so the dll wasn't working. Already said you it should be done, but well, too bad we had to come to this point.Will,
please, don't take for yourself the statement i've done : Most kixforms and kixwinvb users don't know the debate that actually exist between Shawn and myself with the event handling, as they don't get a deeper look on the other snappin. So each time we asked the question, answer wasn't about this one. After some like that, i completely gave it up.
Also, here are the differences :
Execute() method :
code:
$object.move="Eventmove"
$object.resize="Eventresize"
... all other stuff ...
do while $object.visible=1
$=Execute($object.lastevent)
loopexit()
function Eventmove
...
endfunction
function Eventresize
...
endfunction
Polling method :
code:
... all stuff ...
while $object.getevent
if $object.resize
' do your resize stuff
endif
if $object.move
' do your move stuff
endif
loop
exit()
Shawn, correct me if i'm wrong in my example
Jpols, please, don't $=execute("$Alex.H") 
[ 18 January 2002: Message edited by: Alex.H ]