To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59224


User auberon changed the following:

                What    |Old value                 |New value
================================================================================
                      CC|'dalia,egle,fozis,mantas' |'auberon,dalia,egle,fozis,
                        |                          |mantas'
--------------------------------------------------------------------------------




------- Additional comments from aube...@openoffice.org Wed Mar 25 16:46:04 
+0000 2009 -------
François Gatto, on the French user mailing-list, has created this macro to edit 
the author field:

Sub EditAuthorField
    Dim oDoc As Object
    Dim sAuthor As String, sMsg As String
    Dim iRep As Integer
    oDoc = ThisComponent
    sAuthor = "Current author is: " & oDoc.DocumentInfo.Author
    sAuthor = sAuthor & Chr(10) & Chr(10) & "Enter the author's name of this 
document:"
    sAuthor = InputBox( sAuthor, ":: Edit field Author ::")
    sMsg = "The new field will be: " & Chr(10) & sAuthor
    If sAuthor <> "" Then
      iRep = MsgBox (sMsg, 4 + 32 + 256, "Please, confirm")
      If iRep = 6 Then
        oDoc.DocumentInfo.Author = sAuthor
      End If
    End If
End sub

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to