Hi
I have to do something in lotusscript but i have never used it so it is really difficult for me.
especially all those things that I have to declare and instantiate.
I have form with a button. if that button is clicked than another form is composed. And then I want the value of a field in the first form in a field in the second.
I think this can only be done by lotusscript. But i cannot really work with this.
Can somebody help me please.
Thanks in advance
Subject: RE: lotusscript problems
Usually you can do what you’re talking about very easily without LotusScript. Just set the second form’s properties to inherit values during compose; that lets you use fieldnames from the first document in the formulas of the second document. Read about “Creating fields that inherit values” in the Domino Designer help.
Then your action can just use @Command([Compose]…)
Subject: lotusscript problems
This can be done in formulas. On the properties for the second form, go to the Defaults tab and check “Formulas inherit values from selected document.” You can then use field names from another form in field values in this form.