GreetzIs it possible to change fild value in read mode by pressing some button.I dont want to go to write mode beacouse other fields can’t be editable.The field I want to modifity is always hidden.Any ideas ?
Thx
GreetzIs it possible to change fild value in read mode by pressing some button.I dont want to go to write mode beacouse other fields can’t be editable.The field I want to modifity is always hidden.Any ideas ?
Thx
Subject: problem with changing field value (again)
FIELD := value;
for example, if I want to change the field full name to have the value of firstname plus last name:
FIELD FullName := FirstName + " " + LastName;
Subject: RE: problem with changing field value (again)
That’s not going to work in read mode, though.
Use LotusScript, assign fields in the back-end document, use NotesDocumen.Save to save your changes.