par YouyouX » 17 Sep 2003 à 08:13
voila la solution de ton problème :When I click on Tools-->Out of Office, I get the following error message: "Field: 'DaysOut_1': Unable to interpret Time or Date". What does this mean and how can I fix it?This error message indicates a corrupted Out of Office profile. To correct the problem, you will have to create a new agent (with a name other than Out of Office) in order to delete the Out of Office profile. To create the agent, do the following:1. Open your Lotus Notes client and go into your Mail Inbox2. Click on Create-->Agent3. For Agent name, enter: Fix Corrupted Out of Office Profile4. For "When Should This Agent Run", choose Manually from Actions Menu5. For "Which documents should it act on", choose Selected Documents6. For "Run", use the drop-down arrow to select LotusScript7. From the Objects tab, select Initialize8. Insert the following Lotus Script inside the Sub - End Sub tags:Dim s as New NotesSession Dim db as NotesDatabase Dim doc as NotesDocument Set db = s.currentdatabase Set doc = db.GetProfileDocument("OutofOfficeProfile") If Not doc.isnewnote Then Call doc.Remove(True) 9. Close and save the Agent task10. Return to your Inbox and select Actions--->Fix Corrupted Out of Office Profile11. The agent will run and this should fix your Out of Office problem.