Thanks Mike, I think this is just what I was looking for. I'll give a try tomorrow.
Paul -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Mike Byerley Sent: Saturday, February 04, 2012 6:24 PM To: RBASE-L Mailing List Subject: [RBASE-L] - Re: Variable Lookup List View Question When you press the Enter key while the listview has focus, you will exit the control to the next control that can recieve focus, thence the OnExit EEP will fire. You just need to test for the keypress using LastKey like: IF (LASTKEY(0)) = '[enter]' THEN -- Do Your Thing Here ENDIF ----- Original Message ----- From: "Paul Buckley" <[email protected]> To: "RBASE-L Mailing List" <[email protected]> Sent: Saturday, February 04, 2012 6:06 PM Subject: [RBASE-L] - Variable Lookup List View Question : Good Afternoon/Evening, : : I've got a question about a variable lookup list view. I'm using the latest : version of eXtreme 9.1 64 bit and I have a form with a variable lookup list : view. I'd like to be able to find the row on the list view (by either : scrolling, arrowing, typing, whatever) and press Enter to select that row. : All I see are On Entry, On Exit, On Click, On Double Click and On Right : Click EEP's. Is there a way I can "accept" the highlighted row and process : an EEP without using the On Exit? : : I want to be able to use the list view because I need the ability to "sort" : the columns by clicking the column header. If there is another control that : will give me that capability and let me process the "enter" key, I'm OK with : that. : : Thanks in advance, my brain is fried this late on a Saturday : afternoon/evening. : : Paul Buckley : :

