Kbase P55164: How to apply entry to a browse column given ONLY column numb
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  11/20/2003 |
|
Status: Unverified
GOAL:
How to apply entry to a browse column given ONLY column number and browse name?
FACT(s) (Environment):
Progress 9.x
FACT(s) (Environment):
Progress 8.x
FIX:
The following code would apply entry to the third column of the currently selected row of the browse named 'BrowseName':
DEFINE VARIABLE hc AS HANDLE NO-UNDO.
DEFINE VARIABLE ic AS INTEGER NO-UNDO.
ASSIGN
ic = 3 /* need entry to 3rd column */
hc = BrowseName:GET-BROWSE-COLUMN(3). /* get 3rd column handle */
APPLY 'ENTRY' TO hc.