setFrameLabels(frame a:handle).

nate100

Member
Does anybody know what the use for setFrameLabels is.
If somebody can provide some samples that would be useful..

Thank you.
 
hi
SETFRAMELABELS(FRAME a:handle).
This is in general used after FORM Definition..it follwos as below ..

FORM
m_name COLON 20
m_class COLON 60
WITH SIDE-LABEL FRAME a WIDTH 80.
SETFRAMELABELS(FRAME a:handle).

YOU know something about label Master ? lbl_mstr and lbld_det..
it will be in option no : 36.4.17.1 and 36.4.17.5

In 36.4.17.5 Label detail maintenace you need to attach the form variable and corresponding program name with Label wch is already defined in Label MAster (36.4.17.1)..

for the above example u can give it as

field_name : m_name
program name : class.p (your program name)
Term : Name (It must be defined before in 36.4.37.1)


So in your progress code by including

SETFRAMELABELS(FRAME a:handle)...

It automatically takes the Labels from Label Details...which u attached them through 36.4.17.5

hope you understood
if not try it by taking a simple example as above...

regards,
ramya
 

ovf

Member
Hi,

The stuf ramya explained is correct.

The general use, is translation to the different user languages.

Regards Ole
 
Top