paul visor 7.Feb.12 02:49 PM a Web browser Domino Designer7.0.2 FP3Windows XP
Hi,
I need to set a field using formula language,
I dont know the name of the field untill the code runs, so I have a string where the name of the field is. here is how it it;
selection := @Prompt([OkCancelListMult];"Remove an amount";"Please select the product to be removed and its amount:";"";FAmountD);
**** the selection value is “57.98 Doors no. 133 ----txtProduct”
NameOfField := @Right(selection;"----");
*** the value of NameOfField is the field name txtProduct
@SetField(NameOfField; " " ); how can I set the field , I only have it in the valiable NameOfField ?