Das Notes Forum

Lotus Notes / Domino Sonstiges => Projekt Bereich => Help-Desk Applikation !!Help!! => Thema gestartet von: alecrespi am 19.02.07 - 16:59:16

Titel: Formatting "Actions Taken"
Beitrag von: alecrespi am 19.02.07 - 16:59:16
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.
Titel: Re: Formatting "Actions Taken"
Beitrag von: eknori am 19.02.07 - 17:09:46
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
Titel: Re: Formatting "Actions Taken"
Beitrag von: Thomas Schulte am 19.02.07 - 17:20:53
Or you could wait and look at the new show all useractions interface that is coming.
Titel: Re: Formatting "Actions Taken"
Beitrag von: alecrespi am 19.02.07 - 17:48:15
thank you.
In the meantime I've corrected the script.
 ::)