<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Domino 6.5</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/domino-65/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 20:40:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>New Lotus Notes Mailfile Replica is double the size!</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/new-lotus-notes-mailfile-replica-is-double-the-size/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/new-lotus-notes-mailfile-replica-is-double-the-size/#comments</comments>
		<pubDate>Fri, 24 Aug 2012 01:29:55 +0000</pubDate>
		<dc:creator>emmaR</dc:creator>
				<category><![CDATA[Domino]]></category>
		<category><![CDATA[Domino 6.5]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/new-lotus-notes-mailfile-replica-is-double-the-size/</guid>
		<description><![CDATA[New Discussion Post by Abushahd]]></description>
				<content:encoded><![CDATA[New Discussion Post by Abushahd]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/new-lotus-notes-mailfile-replica-is-double-the-size/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lotus Notes Agent and newsletter with list problem</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/lotus-notes-agent-and-newsletter-with-list-problem/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/lotus-notes-agent-and-newsletter-with-list-problem/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 18:37:02 +0000</pubDate>
		<dc:creator>AMcAuley3</dc:creator>
				<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Lotus 7.0.2]]></category>
		<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Lotus Domino 6.5]]></category>
		<category><![CDATA[Lotus Domino error messages]]></category>
		<category><![CDATA[Lotus Notes]]></category>
		<category><![CDATA[Lotus Notes 7.0.2]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Here is my Agent Dim okayemail As Boolean Dim debugsearch As Boolean Dim logpath As String Dim errorlist List As String Dim  AlertNotificationdoc As NotesDocument Dim x As Integer Dim AlertNotificationdc As NotesDocumentCollection Dim AlertNotificationdb As NotesDatabase Dim worksel As String Dim selection As String Dim LogDBV As Variant Dim LogEntry As String Dim workcount [...]]]></description>
				<content:encoded><![CDATA[<p>Here is my Agent<br/><br/> Dim okayemail As Boolean Dim debugsearch As Boolean Dim logpath As String Dim errorlist List As String Dim  AlertNotificationdoc As NotesDocument Dim x As Integer Dim AlertNotificationdc As NotesDocumentCollection Dim AlertNotificationdb As NotesDatabase Dim worksel As String Dim selection As String Dim LogDBV As Variant Dim LogEntry As String Dim workcount As Integer Dim strfield As String Dim timestamp As NotesDateTime Dim LOGNAME As String Const LOGagent = &#8220;SendAlert&#8221; Dim user As NotesName Dim samplist List As String Dim servname As NotesName<br/><br/>  <br/><br/> Sub Initialize   On Error Goto ProcessError      Set s = New NotesSession  Set db = s.CurrentDatabase  server = db.server   Set timestamp = New NotesDateTime(Today)  REM Loading the database into the agent  LogDBV = GetKWV(&#8220;LogDatabases&#8221;)    Call AgentLogAction(LOGNAME, &#8220;&lt;&#8212;&#8212;Start&#8212;&#8212;&gt;&#8221;)  Set servname = New NotesName(db.server)   LOGNAME = servname.Common &#038; &#8220;-&#8221; &#038; LOGagent     If  GetKW(&#8220;Debug&#8221;)  = &#8220;1&#8243; Then   Debugsearch = True     Else   Debugsearch = False  End If       Forall LD In Logdbv   Logpath = LD       Set AlertNotificationdb = s.getdatabase(db.server,LD)        worksel = |(@created = @date(| &#038; Year(timestamp.LSLocalTime) &#038; |;| &#038; Month(timestamp.LSLocalTime)  &#038; |;| &#038; Day(timestamp.LSLocalTime) &#038; |))|   selection = worksel      If debugsearch Then    Call AgentLogAction(LOGNAME, &#8220;selection= &#8221; &#038; selection)   End If      Set AlertNotificationdc = AlertNotificationdb.Search( selection , Nothing , 0)      If Not AlertNotificationdc Is Nothing Then    Set AlertNotificationdoc = AlertNotificationdc.GetFirstDocument        While (Not AlertNotificationdoc Is Nothing)     strfield = AlertNotificationdoc.GetItemValue(&#8220;A$LogType&#8221;)(0)     If strfield = &#8220;Error&#8221; Then     doc.getitemvalue(&#8220;A$Logtime&#8221;) (0)       errorlist(AlertNotificationdoc.UniversalID) =AlertNotificationdoc.GetItemValue(&#8220;A$LogType&#8221;)(0) &#038; &#8220;~&#8221; &#038; Alertnotificationdoc.GetItemValue(&#8220;A$Logtime&#8221;)(0)  &#038; &#8220;~&#8221; &#038; AlertNotificationdoc.GetItemValue(&#8220;A$Progname&#8221;)(0)&#038; &#8220;~&#8221; &#038; Alertnotificationdoc.GetItemValue(&#8220;A$User&#8221;)(0) &#038; &#8220;~&#8221; &#038; Alertnotificationdoc.GetItemValue(&#8220;A$Action&#8221;)(0)&#038; &#8220;~&#8221; &#038; Alertnotificationdoc.GetItemValue(&#8220;A$ERRMSG&#8221;)(0)      okayemail=True      End If     Set AlertNotificationdoc = AlertNotificationdc.GetNextDocument(AlertNotificationdoc)       Wend   End If  End Forall     If okayemail Then <br/><br/> REM Line 77 below the whole call statement<br/><br/> Call NewWeeklyNewsletterwithlist(AlertNotificationdoc,GetKWNames(&#8220;AlertNotification&#8221;) ,&#8221;ErrorAlert&#8221;)     End If     Exit Sub      Call AgentLogAction(LOGNAME, Cstr(workcount) &#038; &#8220;  Error emails sent&#8221;)  Call AgentLogAction(LOGNAME, &#8220;&lt;&#8212;&#8212;End &#8212;&#8212;&gt;&#8221;)     ProcessError:  Call AgentLogError(LOGNAME,0, &#8220;Line: &#8221; &#038; Erl() &#038;  &#8221; Error:&#8221; &#038; Err() &#038; &#8220;=&#8221; &#038; Error() ) Call AgentLogError(LOGNAME,0, &#8220;  Error in  &#8221; &#038; (AlertNotificationdoc.Logpath(0)))  Resume Next     End Sub<br/><br/>  <br/><br/> Here is my Newsletter <br/><br/>  <br/><br/> Sub NewWeeklyNewsletterwithlist(AlertNotificationdoc As NotesDocument, Attention As Variant, Action As String)  On Error Goto ProcessError     REM Dim db As NotesDatabase  Dim s As New NotesSession   Dim rtiText1 As NotesRichTextItem  Dim rtiText4 As NotesRichTextItem  Dim rtiBody As NotesRichTextItem  Dim nrts As NotesRichTextStyle  Dim nrtsbold As NotesRichTextStyle  Dim strMsg As String  Dim docloop As Integer  Dim doc As New NotesDocument(s.CurrentDatabase)  Dim ndoc As NotesDocument  Dim Debug As Integer  Const LOGNAME = &#8220;NewWeeklyNewsletterwithlist(S)&#8221;  Dim Unid As String  Dim codedb As NotesDatabase  Dim codeview As NotesView  Dim notifdoc As NotesDocument  Dim item As NotesItem  Dim att1 As Variant  Dim st As Variant  Dim samplist List As String          server = s.CurrentDatabase.Server          Set codeview = codedb.GetView(&#8220;Notification&#8221;)  Set notifdoc = codeview.GetDocumentByKey(&#8220;SampNotification&#8221;)        st = Attention    Set Item = doc.ReplaceItemValue(&#8220;OrigShipTo&#8221;,Attention)  If notifdoc.DebugMode(0) = &#8220;1&#8243; Then   Set item = notifdoc.GetFirstItem(&#8220;DebugEmail&#8221;)     Att1 =  item.Values   st = att1   debug = True  Else   debug = False  End If      If (Not debug) And (Attention(0) =&#8221;") Then   Exit Sub  End If        Set rtiText1 = New NotesRichTextItem(doc, &#8220;Title1&#8243;)  Set rtiText4 = New NotesRichTextItem(doc, &#8220;Title4&#8243;)   Set rtiBody = New NotesRichTextItem(doc, &#8220;Body&#8221;)  Set nrtsbold = s.CreateRichTextStyle  Set nrts = s.CreateRichTextStyle  nrtsbold.NotesFont = Font_Helv  nrtsbold.FontSize = 10  nrtsbold.NotesColor = Color_Dark_Blue  nrtsbold.Bold = True  Call rtiText1.AppendStyle(nrtsbold)  Call rtiText4.AppendStyle(nrtsbold)  nrtsbold.FontSize = 8    Call rtiText1.AddNewLine(2)   Call rtiText1.AppendText(strMsg)  Call rtiText1.AddNewLine(2)  nrts.NotesFont = Font_Helv  nrts.FontSize = 8  nrts.NotesColor = Color_Black  nrts.Bold = False        Forall e In samplist      REM parse out each value   E1 = Strtoken(e,&#8221;~&#8221;,1,5)   E2 = Strtoken(e,&#8221;~&#8221;,2,5)     E3 = Strtoken(e,&#8221;~&#8221;,3,5)   E4 = Strtoken(e,&#8221;~&#8221;,4,5)   E5 = Strtoken(e,&#8221;~&#8221;,5,5)     E6 = Strtoken(e,&#8221;~&#8221;,6,5)  End Forall            Call rtiBody.AppendStyle(nrts)    docloop = 0  Set ndoc = dc.GetFirstDocument    While Not ndoc Is Nothing   docloop = docloop + 1   Call rtiBody.AppendText(Str$(docloop) &#038; &#8221; -  ( &#8220;)      Unid = ndoc.UniversalID   strMsg = &#8220;An Error has occurred for a Lotus Database&#8221;   Call rtiBody.AppendDocLink(ndoc, strMsg)   Call rtiBody.AppendText(&#8221; )  &#8220;) Call AgentLogAction(LOGNAME, &#8220;Loc&#8221; &#038; Cstr(ndoc.LocationNumber(0)) &#038; &#8220;PassThru:  &#8221; &#038; Cstr(nrts.PassThruHTML))   strmsg = &#8220;&#8221;       Select Case Action       Case &#8220;ErrorAlert&#8221;        Call rtiBody.AppendStyle(nrtsbold)    Call rtiBody.AppendText(&#8220;Database name of Agent log: &#8220;)    Call rtiBody.AppendStyle(nrts)    Call rtiBody.AppendText(ndoc.Location(0) &#038; &#8220;  &#8221; &#038; ndoc.accountname(0))     Call rtiBody.AddNewLine(1)    Call rtiBody.AppendStyle(nrtsbold)    Call rtiBody.AppendText(&#8220;Date/Time of Error: &#8220;)    Call rtiBody.AppendStyle(nrts)    Call rtiBody.AppendText(ndoc.OriginatorsName(0)  )     Call rtiBody.AddNewLine(1)    Call rtiBody.AppendStyle(nrtsbold)    Call rtiBody.AppendText(&#8220;Agent: &#8220;)    Call rtiBody.AppendStyle(nrts)    Call rtiBody.AppendText(ndoc.viewstatus(0)  )     Call rtiBody.AddNewLine(1)    Call rtiBody.AppendStyle(nrtsbold)    Call rtiBody.AppendText(&#8220;User Name: &#8220;)    Call rtiBody.AppendStyle(nrts)    Call rtiBody.AppendText(ndoc.ageinstatus(0)  )     Call rtiBody.AddNewLine(1)    Call rtiBody.AppendStyle(nrtsbold)    Call rtiBody.AppendText(&#8220;Error Message: &#8220;)    Call rtiBody.AppendStyle(nrts)    Call rtiBody.AppendText(ndoc.ageinstatus(0)  )     Call rtiBody.AddNewLine(1)               Case &#8220;Confirm&#8221;   End Select    Set ndoc= dc.GetNextDocument(ndoc)  Wend     &#8216;Set up and Send Memo   doc.Form = &#8220;ReadyMemo&#8221;    Select Case Action  Case &#8220;ErrorAlert&#8221;   strMsg = &#8220;An Error has occured in the following database&#8221;   Call rtiText1.AppendText( GetKWV(&#8221; LogDatabases&#8221;))   Call rtiText1.AddNewLine(2)     End Select     (&#8220;Principal&#8221;)  doc.Subject = strmsg    doc.OrigST = Attention &#8217;for debugging  doc.Principal = &#8220;Error Notifications&#8221;  doc.Save True, False  Call doc.Send(True, st)      Exit Sub   ProcessError:      Call AgentLogError(LOGNAME, 0, &#8220;NoteID:  &#8221; &#038; ndoc.NoteID &#038; Err() &#038; &#8220;: &#8221; &#038; Error() &#038; &#8221; Line: &#8221; &#038; Erl() )      Msgbox Err() &#038; &#8220;:&#8221; &#038; Error()   Resume Next   End Sub<br/><br/> My problem is that it says that the Call Newsletterwithlist for the agent to the newsletter it says variable is not set and I can&#8217;t seem to fix it. I have tried debugging it and can&#8217;t not understand what it is missing when trying to link the two together. It doesn&#8217;t give me the error inless I put in some error processing which then shows me it is on line 77 which I have Rem out up top so you can see. Can anyone please help me fix this?<br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/lotus-notes-agent-and-newsletter-with-list-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>View Selection Help (domino designer)</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/view-selection-help-domino-designer/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/view-selection-help-domino-designer/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 19:51:46 +0000</pubDate>
		<dc:creator>AMcAuley3</dc:creator>
				<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Domino Designer]]></category>
		<category><![CDATA[Lotus Domino]]></category>
		<category><![CDATA[Lotus Domino 6.5]]></category>
		<category><![CDATA[Lotus Domino development]]></category>
		<category><![CDATA[View Selection]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a Status field that if it equals 90 and it means that it is closed and has a date of when it was closed. If it equals 80 it is open.. 70 it is void &#8230; and so on down to 10. So I want to display all everything except the old ones [...]]]></description>
				<content:encoded><![CDATA[<p>I have a Status field that if it equals 90 and it means that it is closed and has a date of when it was closed. If it equals 80 it is open.. 70 it is void &#8230; and so on down to 10. So I want to display all everything except the old ones which Status = 90 doesn&#8217;t have a close date and is blank. If I put @Isavailable(DateS90) it only displays the the status = 90 with dates in them and takes away the 80,70,60,50,40,30,20, and 10. I want to display all those as well just not the status = 90 that are blank. DateS90 = it eqauls the close date. So any Ideas</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/view-selection-help-domino-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domino server migration</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/domino-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/domino-server/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 11:26:04 +0000</pubDate>
		<dc:creator>Lot</dc:creator>
				<category><![CDATA[Domino 5]]></category>
		<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Domino Server]]></category>
		<category><![CDATA[Lotus Domino Migration]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi All, I have Domino server and 10 clients. Domino server has version 5. and 7 clients have version 5 installed while 3 of them have 6.5 installed. Is this going to affect domino server functionality any way because my server is in 5 while client is in 6.5? How I can migrate domino server [...]]]></description>
				<content:encoded><![CDATA[<p>Hi All,<br/><br/> I have Domino server and 10 clients. Domino server has version 5. and 7 clients have version 5 installed while 3 of them have 6.5 installed.<br/><br/> Is this going to affect domino server functionality any way because my server is in 5 while client is in 6.5?<br/><br/> How I can migrate domino server to 6.5 and update everything if required.<br/><br/>  <br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/domino-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;re not authorized to use the server at this port</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/youre-not-authorized-to-use-the-server-at-this-port/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/youre-not-authorized-to-use-the-server-at-this-port/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 09:59:33 +0000</pubDate>
		<dc:creator>mvb</dc:creator>
				<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Lotus Notes 6.5]]></category>
		<category><![CDATA[Lotus Notes error messages]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[When I enable the Out Of Office-agent, it runs with following error in the agent log : Error (4000):Notes error: You are not authorized to use the server at this port. I can&#8217;t find the reason. Anybody?]]></description>
				<content:encoded><![CDATA[<p>When I enable the Out Of Office-agent, it runs with following error in the agent log :<br/><br/> Error (4000):Notes error: You are not authorized to use the server at this port.<br/><br/> I can&#8217;t find the reason.<br/><br/> Anybody?<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/youre-not-authorized-to-use-the-server-at-this-port/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Domino 8 Quota Issue</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/domino-8-quota-issue/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/domino-8-quota-issue/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 19:38:56 +0000</pubDate>
		<dc:creator>Brievap</dc:creator>
				<category><![CDATA[.NSF files]]></category>
		<category><![CDATA[Domino]]></category>
		<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Domino Designer]]></category>
		<category><![CDATA[Domino Server]]></category>
		<category><![CDATA[Domino Web Access]]></category>
		<category><![CDATA[Domino Web Access (iNotes)]]></category>
		<category><![CDATA[Formula Language]]></category>
		<category><![CDATA[iNotes]]></category>
		<category><![CDATA[Lotus]]></category>
		<category><![CDATA[Lotus Address Book]]></category>
		<category><![CDATA[Lotus Agents]]></category>
		<category><![CDATA[Lotus archiving]]></category>
		<category><![CDATA[Lotus development]]></category>
		<category><![CDATA[Lotus Domino 6.5]]></category>
		<category><![CDATA[Lotus Domino 6.x]]></category>
		<category><![CDATA[Lotus Domino 7.x]]></category>
		<category><![CDATA[Lotus Domino 8.x]]></category>
		<category><![CDATA[Lotus Domino replication]]></category>
		<category><![CDATA[Lotus Domino Server 6.x]]></category>
		<category><![CDATA[Lotus Domino Server 7.x]]></category>
		<category><![CDATA[Lotus Domino Server 8.x]]></category>
		<category><![CDATA[Lotus email]]></category>
		<category><![CDATA[Lotus error messages]]></category>
		<category><![CDATA[Lotus Forms]]></category>
		<category><![CDATA[Lotus migration]]></category>
		<category><![CDATA[Lotus Notes]]></category>
		<category><![CDATA[Lotus Notes 5.x]]></category>
		<category><![CDATA[Lotus Notes 6.5]]></category>
		<category><![CDATA[Lotus Notes 6.x]]></category>
		<category><![CDATA[Lotus Notes 7]]></category>
		<category><![CDATA[Lotus Notes 7.0.2]]></category>
		<category><![CDATA[Lotus Notes 7.x]]></category>
		<category><![CDATA[Lotus Notes 8.x]]></category>
		<category><![CDATA[Lotus Notes administration]]></category>
		<category><![CDATA[Lotus Notes archiving]]></category>
		<category><![CDATA[Lotus Notes Calendar]]></category>
		<category><![CDATA[Lotus Notes Database]]></category>
		<category><![CDATA[Lotus Notes Domino archiving]]></category>
		<category><![CDATA[Lotus Notes email]]></category>
		<category><![CDATA[Lotus Notes error messages]]></category>
		<category><![CDATA[Lotus Notes errors]]></category>
		<category><![CDATA[Lotus Notes View]]></category>
		<category><![CDATA[Lotus Sametime]]></category>
		<category><![CDATA[LotusScript]]></category>
		<category><![CDATA[Names.nsf]]></category>
		<category><![CDATA[Notes/Domino certification]]></category>
		<category><![CDATA[NSF]]></category>
		<category><![CDATA[Platform Issues]]></category>
		<category><![CDATA[WebSphere]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a few workstations that are domino 5 that i am migrating to a domino 8 server enviroment. The domino 5 mail files have thier templates updated and copied to the remote workstaions to provide a local mail file that only replicates mail changes at an interval. now my questin is that this all [...]]]></description>
				<content:encoded><![CDATA[<p>I have a few workstations that are domino 5 that i am migrating to a domino 8 server enviroment. The domino 5 mail files have thier templates updated and copied to the remote workstaions to provide a local mail file that only replicates mail changes at an interval.  now my questin is that this all works fine untill i get an message about a quota on the local mail file when i didnt have one set. The servers copy of the mail file is fine and lets me send email with no issues, its just the local mail file that i copied onto the local pcs that is becoming annoying. Is it something to do with the template that they are updating to ? where is this function getting the results fo this message. Any help would be greatly appreciated.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/domino-8-quota-issue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Domino 6.5 agent to Domino 8.5 Server</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/domino-65-agent-to-domino-85-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/domino-65-agent-to-domino-85-server/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 08:34:28 +0000</pubDate>
		<dc:creator>MatU</dc:creator>
				<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Domino 6.5 template's agent code to Designer v8.5]]></category>
		<category><![CDATA[Domino Designer 8]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Question Edited by MatU]]></description>
				<content:encoded><![CDATA[Question Edited by MatU]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/domino-65-agent-to-domino-85-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Edit other peoples documents (web)</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/edit-other-peoples-documents-web/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/edit-other-peoples-documents-web/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 15:18:35 +0000</pubDate>
		<dc:creator>Mrg</dc:creator>
				<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Lotus Notes 6.x]]></category>
		<category><![CDATA[Lotus Notes permissions]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi! I&#8217;m working on a domino-based website, I&#8217;ve developed a client contact form, that our staff can use when contacted by the public. Everything works fine, but when a document is added to the contact list, I&#8217;d like to make it so that if the client contacts one of our other staff, they can search [...]]]></description>
				<content:encoded><![CDATA[<p>hi! I&#8217;m working on a domino-based website, I&#8217;ve developed a client contact form, that our staff can use when contacted by the public. Everything works fine, but when a document is added to the contact list, I&#8217;d like to make it so that if the client contacts one of our other staff, they can search the directory and edit/update the existing record.  Everything works up to the point where they click to edit the document (using the !EditDocument cmd) they are prompted to log in again to the site. I guess it&#8217;s looking for the original author&#8217;s credentials.<br />
Any suggestions on how to get around this?<br />
Mucho thanks&#8230;</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/edit-other-peoples-documents-web/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Why 2 different functions?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/why-2-different-functions/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/why-2-different-functions/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 19:03:33 +0000</pubDate>
		<dc:creator>MParman</dc:creator>
				<category><![CDATA[ActiveX]]></category>
		<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have created a domino application that is used in creating sales contracts. The contracts are word templates that the application administrator controls, and are stored as individual documents within the application. The end client enters the sales information (type of sale, payment method….) that is used to determine which type of contract is needed. [...]]]></description>
				<content:encoded><![CDATA[<p>I have created a domino application that is used in creating sales contracts.  The contracts are word templates that the application administrator controls, and are stored as individual documents within the application. The end client enters the sales information (type of sale, payment method….) that is used to determine which type of contract is needed.  When the status of the contract reaches a specified level, links are created to the templates needed.  Here is the problem! I need to be able to open the word template and updated the word template all with one click of a button. Currently I have 2 javascript functions, the first launches the ?OpenElement link, and the second uses activex to take control to the currently opened template and update it with information. I execute the first function to open the template, I then have to go back to the browser and execute the second function to get the template updated, this process works but if a try to combine them into one function I receive an activex error “automation server can’t create object”. </p>
<p>function launch_attachment (loc)<br />
{<br />
window.open(loc);<br />
}</p>
<p>function populate_Doc() {<br />
     var w= GetObject(&#8220;&#8221;,&#8221;Word.Application&#8221;);<br />
     w.Visible = true;<br />
     obj= w.activedocument<br />
     obj.FormFields(&#8220;fld1&#8243;).result = &#8220;XXXXX”<br />
}</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/why-2-different-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error message shown below on the Domino Server Console</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-message-shown-below-on-the-server-domino-console/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/error-message-shown-below-on-the-server-domino-console/#comments</comments>
		<pubDate>Wed, 13 May 2009 09:19:30 +0000</pubDate>
		<dc:creator>GinaA</dc:creator>
				<category><![CDATA[Domino 6.5]]></category>
		<category><![CDATA[Domino administration]]></category>
		<category><![CDATA[Domino Directory]]></category>
		<category><![CDATA[Domino Server Console]]></category>
		<category><![CDATA[Lotus Domino 6.x]]></category>
		<category><![CDATA[Notes Certifiers]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Domino Server : 6.5.3 I received an error message shown below on the Server Domino Console: Error locating a Domino Directory entry for certifier /OU=HQ /O=ASIAN: Entry not found in index Any Ideas on how to rectify this error message as to not shown on the server console anymore?? Would appreciate for your kind assistance [...]]]></description>
				<content:encoded><![CDATA[<p>Domino Server : 6.5.3</p>
<p>I received an error message shown below on the Server Domino Console: </p>
<p>Error locating a Domino Directory entry for certifier /OU=HQ /O=ASIAN: Entry not found in index</p>
<p>Any Ideas on how to rectify this error message as to not shown on the server console anymore??</p>
<p>Would appreciate for your kind assistance </p>
<p>Many Thanks..</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/error-message-shown-below-on-the-server-domino-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.011 seconds using memcached
Object Caching 1006/1007 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 00:34:53 -->