I think this is different than the previous problem in this forum. I've got two basic file browses on two different files.
On the one that's working okay, I've got this code in the CallClicked routine:
Message('Row UID=' & USE:ID & ', id=' & p_web.GetValue('id') & ', value=' & p_web.GetValue('value'))
On the one that's not working, it's virtually identical:
Message('Row UID=' & REQ:ID & ', id=' & p_web.GetValue('id') & ', value=' & p_web.GetValue('value'))
The first one displays a popup message when I click on a row, but the second one does nothing but highlight that row, preventing me from grabbing some file data before I go to the form.
My question is: what causes the CallClicked routine to be called, and why wouldn't it work on any browse?