Advertisement

07.29.2008 at 03:14AM PDT, ID: 23603444
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Trying to modify a  Mail R7 template (dwa7.ntf) And Getting Unwanted Save Prompts I can't Stop.

Asked by IanWood in Lotus Notes, Lotus Domino Email Server

Tags:

I'm modifying a  Mail R7 template (dwa7.ntf) to provide basic multiple user functionality (People can accept the mail to deal with so others don't also pick it up and a target date and status field added).

I have a button that users click to accept the mail and one to close it after they've dealt with it.  It's working fine apart from a stray Save/Save And Send/Discard/Send Only message that comes up when trying to close the mail.  

Here's my button code:-


Sub Click(Source As Button)
      Dim ws As New NotesUIWorkspace
      Dim s As New NotesSession      
      Dim uidoc As NotesUIDocument
      Dim doc As notesDocument
      Dim db As NotesDatabase
      
      Set db = s.CurrentDatabase
      Set uidoc = ws.CurrentDocument
      Set doc = Uidoc.Document
      Dim iResponse As Integer
      iResponse = Msgbox("Are you sure?", 36, db.Title)
      If  iResponse <> 6 Then
            Exit Sub
      End If    
      
      If (uidoc.EditMode = False) Then
            uidoc.EditMode = True
      End If
      Call uidoc.FieldSetText("Status","02")
      Call uidoc.FieldSetText("AcceptedBy",s.CommonUserName)
      Call uidoc.FieldSetText("DateAccepted",Cstr(Now))
      Call uidoc.Save()
        Call uidoc.close()
      Msgbox "You have accepted this query.", 64, db.Title
End Sub

Surely as I'm calling the save and then close, it shouldn't need to ask whether I want to save/discard etc?     How can I stop this message and just exit the document after saving the changes i've made?

Originally I done this in a R5 db years ago and I had to use the front end doc as I couldn't get it to work using the backend document for some reason.    The db needs upgrading, so I'm trying to replicate the changes into a R7 db and I get the extra unwanted/confusing save box.

Any suggestions?  

Start Free Trial
[+][-]07.29.2008 at 04:23AM PDT, ID: 22110359

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.29.2008 at 04:28AM PDT, ID: 22110374

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.29.2008 at 04:34AM PDT, ID: 22110391

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Lotus Notes, Lotus Domino Email Server
Tags: Lotus Notes
Sign Up Now!
Solution Provided By: olaraak
Participating Experts: 2
Solution Grade: A
 
 
[+][-]07.29.2008 at 04:41AM PDT, ID: 22110428

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628