Lonkero,

You've had a chance to play with kixforms ... what's your opinion of the polling for event strategy as opposed to the execute event strategy ...

kixforms uses the polling technique, eg:

while $form.getevent
if $button.click
?"hi there"
endif
loop

kixwinvb uses the execute strategy:

$button.onclick = "button_click()"

while $form.visible
$=execute($form.getevent())
loop

function button_click()
?"hi there"
endfunction

any thoughts ?

-Shawn