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: 

text size

Former Member
0 Kudos

Hi,

I have Text field size 180.

I want to split that text into 3 parts.

Text(180).

like the following.

Text1(60)

Text2(60)

Text3(60).

how can write?

thanks,

fractal

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

text1 = text+0(60).

text2 = text+60(60).

text3 = text+120(60).

4 REPLIES 4

Former Member
0 Kudos

Hi,

text1 = text+0(60).

text2 = text+60(60).

text3 = text+120(60).

suresh_datti
Active Contributor
0 Kudos

Use the offsets...

text1 = text+0(60).

text2 = text+60(60).

text3 = text+120(60).

Good Luck,

Suresh Datti

P.S. PL ingore this and follow the post above

Message was edited by: Suresh Datti

Former Member
0 Kudos

write:/ text+0(60),

text+60(60),

text+120(60).

0 Kudos

Check out this post discuss earlier today. I like the FORMAT_TEXTLINES function module because it won't cut off you words at the splits.

Regards,

Rich Heilman