I have a procedure that displays information on the screen in a down frame. One of the field is a decimal field which column-label can change. Codes as follows:-
IF mappamt:LABEL BEGINS "Debit" THEN
temprec.mp-amount:LABEL = " Debit".
ELSE
temprec.mp-amount:LABEL = " Credit".
Padding with leading space in GUI does not align the column-label properly to the right unless thru trial and error. Is there a better way to get it properly right-aligned? Tried temprec.mp-amount:LABEL:R15 = "Debit" gives compile error.
Thanks for any clue.
Skc
IF mappamt:LABEL BEGINS "Debit" THEN
temprec.mp-amount:LABEL = " Debit".
ELSE
temprec.mp-amount:LABEL = " Credit".
Padding with leading space in GUI does not align the column-label properly to the right unless thru trial and error. Is there a better way to get it properly right-aligned? Tried temprec.mp-amount:LABEL:R15 = "Debit" gives compile error.
Thanks for any clue.
Skc