Search results

  1. S

    moving browse column

    I found a solution... I do this by using two different temp-tables. It is quite a long solution and not a one-step solution. We should use two different procedures, and we should call these procedures in different parts of the whole programme. First at the beginning of the programme, I store...
  2. S

    moving browse column

    I want to move one column in a browse widget by using it's column-label and the current position number in the browse widget. MOVE-COLUMN(i,j) method doesnt work for me properly. I need another solution. If someone can help me, I will be glad. Thanks in advance...
  3. S

    column sort

    very very usefull code. thanks..
  4. S

    highlighting fill-in

    Here it is the code i have used. FIND FIRST mail-list WHERE mail-list.email BEGINS mail-start NO-ERROR. IF AVAILABLE mail-list THEN DO: fil-to:SCREEN-VALUE = TRIM(mail-list.email). fil-to:SET-SELECTION(LENGTH(mail-start) + 1, LENGTH(TRIM(mail-list.email)) + 1). END. IF NOT...
  5. S

    highlighting fill-in

    I have solved my problem by using SET-SELECTION method. In the first step i was using EDITOR WIDGET. However, editor-widget creates some problem. When you use some code in the "DELETE" or "BACKSPACE" trigger in an editor widget, you lose the main function of DELETE and BACKSPACE keys. Therefore...
  6. S

    highlighting fill-in

    Indeed I am trying to make a mail-delivery screen. I want the fill-in area to work like "To" field in outlook. When a user starts to write an e-mail address, the progress should bring the first matching address from the mail list by using "FIND FIRST" and "BEGINS" criteria, and should highlight...
  7. S

    highlighting fill-in

    Hi all, I am trying to highlight part of the text in a fill-in area. For example, fill-in-1:screen-value = "this is an example". I want to highlight the "an example" part by clicking a button in the interface or in a trigger procedure. In other words i want to select a part of the text of...
Top