Lotus Notes / Domino Sonstiges > Help-Desk Applikation !!Help!!

Formatting "Actions Taken"

(1/1)

alecrespi:
How can I do to remove "balnk" lines in the "Actions Taken" section?

(posting an image to show)
I would like to remove the "blue line" and eventually adding some "bold" formatting in the date or text note.

eknori:
remove unneccessary CHR(13) in the following codeblock in querysave-event of form BugReport


--- Code: ---      ' create the action history entries
If  ItemTextExists(source.document, "inputhistory") = False Then
source.Document.inputhistory = source.Document.input(0) & Chr(10) & Chr(13) & Chr(10) & Chr(13) & _
source.Document.inputtimedate(0) & "/" & source.Document.inputtimefrom(0) & "-" & source.Document.inputtimeuntil(0) & Chr(10) & Chr(13) &_
user & "    " & thisdate.LocalTime & Chr(10) & Chr(13) &_
"________________________________________" & Chr(10) & Chr(13)
Else
source.Document.inputhistory = source.Document.inputhistory(0) & source.Document.input(0) &  Chr(10)  & _
source.Document.inputtimedate(0) & "/" & source.Document.inputtimefrom(0) & "-" & source.Document.inputtimeuntil(0) & Chr(10) & Chr(13) &_
user & "    " & thisdate.LocalTime & Chr(10) & Chr(13) &_
"________________________________________" & Chr(10) & Chr(13)
End If
      ' empty the action fields
--- Ende Code ---

Thomas Schulte:
Or you could wait and look at the new show all useractions interface that is coming.

alecrespi:
thank you.
In the meantime I've corrected the script.
 ::)

Navigation

[0] Themen-Index

Zur normalen Ansicht wechseln