Row Entry Event

make

Member
Hi there !!!

I have a big problem !
I have a class for browsing called "cbrowse".
The defines for the browse can i make in a procedure.
Now the problem:
When the Procedure is running i want to select a single row, and when i do that i want to give a variable a new value, a value of a field wich is displayed in the selected row.
But where do i have to put the event, in the class ? in the procedure ?.
Can anyone give me an example for a "row-select ?" event ?

Need all the help i can get !!!!

Make
 
Try this:


ON ITERATION-CHANGED OF {&browse-name} IN FRAME {&frame-name}
DO:
if available customer then
assign iCustomerNumber = customer.cust_no.
END.
 
Top