Application Development and Automation 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: 
Read only

text size

Former Member
0 Likes
833

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
Read only

Former Member
0 Likes
799

Hi,

text1 = text+0(60).

text2 = text+60(60).

text3 = text+120(60).

4 REPLIES 4
Read only

Former Member
0 Likes
800

Hi,

text1 = text+0(60).

text2 = text+60(60).

text3 = text+120(60).

Read only

suresh_datti
Active Contributor
0 Likes
797

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

Read only

Former Member
0 Likes
797

write:/ text+0(60),

text+60(60),

text+120(60).

Read only

0 Likes
797

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