problem with combo-box

rajesh4you

New Member
Hi All,

I am having a doubt. I am trying to use COMBO-BOXin my program.
When I selected one of the item and try to move to the next field by pressing enter, it is not going. when I press F1 it is moving to next field. Is the limitation of COMBO-BOX or is there any way to resolve this issue. Please reply.
 

DivyaRajesh

New Member
Hi .... try with this.......

define variable lc_a as char format "x(18)" label "View" init
"Detail" view-as combo-box list-items "Detail", "Summary".
define variable lc_b as char.

form lc_a lc_b with frame a.

update lc_a go-on(return go) with frame a.
assign lc_a = lc_a:screen-value.

update
lc_b with frame a.

hope this answers ure question.

Rgds
Divya
 
Top