` Printed Icetips Article

Icetips Article



Par2: Memo slicing
2011-03-31 -- Paul Anderson
 
I do something similar to this to convert a memo field into line to 
print on a invoice report. First you need to create a text field, that 
is hidden, that is the same width as the file field you wish to store. 
You can then place your memo into this text control and obtain the 
following information:
Number of lines = Text{Prop:LineCount}
You can loop through Memo by
Loop something# = 1 to Number Of Lines
   File Field Value = Text{Prop:Line,something#}
End



Printed May 4, 2024, 7:26 am
This article has been viewed/printed 35119 times.