Question???

Reynold

Member
Would anybody tell me how can i display "&" in the form lable in progress v9.1D.

example that i want to ask :
FORM
d_chk LABEL "d&c" AT ROW 1 COLUMN 20
WITH FRAME a SIDE-LABELS.

but when i use this it will not display d&c in the form output , so how can i use "&" as a character to display it on form.
 

ashwathnp

New Member
Hi,
I guess two &'s will give the result.
i tried the following code and it worked fine.
form
d_chk LABEL "d&&c" AT ROW 1 COLUMN 20
WITH FRAME a SIDE-LABELS.

Regards,
Ashwath
 
Top