Free Text in form

I need to add some free text in a form application.
I created the label field with the name MyFreeText but it must correspond to a field in the table with the name MyFreeText otherwise the procedure will fail.
How can this be done without having to modify the table?
Thank you all

When you created the form, the field you need will already be there. Just move it into the form.

Forgive me, I didn’t understand or I didn’t explain well.
My need is to have one or more static text fields in the form not connected to the DB and therefore without the need to create a field in the table.
I created a series of “label” type fields with the name , label1, label2, label3 but I necessarily have to create a corresponding field in the table. I don’t want to do this because the text would always be identical and I would consume unnecessary space in the DB
Thank you all

Ok… on OnScriptInit do this:

{MyFreeText} = "Whatever you want it to say ";

1 Like