Dynamic Fill In

Hi everyone,

I need your help.

I have a window, where I can choose an excel-file, and for each header in the excel i make a dynamic label and a dynamic fill-in.

there can be 2, 3, ... , 99 headers.
then i make a counter, and i create my fillins

each fill-in has the name: "FillIn" + string(counter) and is create from
the handle "hLabel".

now the question: how can i get the screen-value out of, for example FillIn5 ?

thanks in advance
 
For each k:
CREATE FILL-IN hFillin[k]
ASSIGN ROW = k + 0.24
COL = 2
WIDTH = 38
HEIGHT = 1
NAME = "Fillin-" + k
FRAME = FRAME frame-b:HANDLE
VISIBLE = TRUE
SCREEN-VALUE = k.
End.
Is the underlined statement u r expecting ? Or k value u r expecting from the excel. I am not clear

Regards
Philip P Oommen
 
No, let me explain what I mean.

for example, I have an excel with 3 colums

Column A: 5
Column B: 4
Column C: 7

in my window i create a dynamic fill in.
I want to get the sum of the 3 columns,
and in the fill-in i want to enter the letter of the column
where i want to have the result, for example "E"

so then i want to fill in the sum's in that column

A B C D E
5 4 7 16

so the thing i want is to get the value out of a certain fill in
 
Top