Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Coloring a line

Former Member
0 Kudos

Using the below I'm not getting the whole line colored. Can you please check why is that?

FORMAT COLOR 7 INTENSIFIED ON.

WRITE AT 45'BA'.

new-line.

WRITE AT 28 'British Airways'.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

it will give color till the end of last char only.

include spaces to make the line colored further.

FORMAT COLOR 7 INTENSIFIED ON.

WRITE At 45 'BA '.

rgds,

bharat.

2 REPLIES 2

Former Member
0 Kudos

Hi,

it will give color till the end of last char only.

include spaces to make the line colored further.

FORMAT COLOR 7 INTENSIFIED ON.

WRITE At 45 'BA '.

rgds,

bharat.

Former Member
0 Kudos

Hi,

when i try with the following code am getting both lines coloured.

FORMAT COLOR 7 INTENSIFIED ON.

WRITE AT 45'BA'.

new-line.

WRITE AT 28 'British Airways'.

Exactly tell me what is problem with that.