ken bohnenkamp
6th November 2002, 18:26
I have a type 2 form that has a step size of 3 (3 lines for each record) and an occurrance of 5 (5 records display on the form). The records occur 5 times on my form which is what I want, but if I add a label to the form, it doesn't occur with each record. Is there a simple way to do this?

evesely
6th November 2002, 19:10
You could create a display field and set its value in the program script.

evertsen
6th November 2002, 19:48
Is it important that it do this? Couldn't you just label the column? The reason I say this is because my solution is a little involved and you need source for the session.

First, define a string in the program script to contain the label description.
example:


extern domain tcmcs.str5 form.label

field.label:
before.field:
form.label = "label"


then on the form add form.label as a form field where you want the label to be.

That's my solution anyway... perhaps someone else will have a simpler answer.