Urgent Issue

Hi Everybody,
Consider i have a frame f1 with 10 fields out of which 5 are COMBO-BOX. I am using a PROMPT-FOR to get input. When i Press ENTER from a text field it moves to the next location whereas when i press "ENTER" from a combo-box it doesn't move to next field.

How can it be made possible. It seems for combo-box field it doesn't come into the editing block because it has got some fixed values and we are just selecting the values.

Its of high urgency. I need to use PROMPT-FOR only because requirement is so...

Thanks in advance.
 
Currently i have written seperate routines for those fields and handled them to move to the next field.

Like;
ON "ENTER":U OF cVerticalMove IN FRAME fBlgAttr
DO:
APPLY "ENTRY" TO cStatusInd IN FRAME fBlgAttr.
END.

Is thr any other effiecient way to handle the same....?
 

tamhas

ProgressTalk.com Sponsor
People on ChUI are used to using ENTER to move from field to field, but really the correct thing to use is TAB. Including Combo-boxes in the form makes this mandatory instead of optional.
 
Top