Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://kramkumarmca.blogspot.com/feeds/posts/default?alt=rss

  1. <?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-8015541540838663984</atom:id><lastBuildDate>Wed, 06 Mar 2024 08:30:55 +0000</lastBuildDate><category>Lotus Notes</category><category>Xpages</category><category>Java</category><category>javascript</category><category>Domino</category><category>jquery</category><category>JSF</category><category>VB Script</category><category>Web service</category><category>Windows</category><title>enjoying with Lotus Notes</title><description>This is the Blog for maintaining my Lotus Notes workouts</description><link>http://kramkumarmca.blogspot.com/</link><managingEditor>noreply@blogger.com (Ramkumar)</managingEditor><generator>Blogger</generator><openSearch:totalResults>123</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-8222941141664700179</guid><pubDate>Wed, 02 Mar 2016 13:00:00 +0000</pubDate><atom:updated>2016-03-02T18:30:26.658+05:30</atom:updated><title>Lotus notes view ReadViewEntries</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  2. I just tested an ajax function in notes and I thought of constructing a view based on the json in lotus notes native web/ Xpages.&lt;br /&gt;
  3. &lt;br /&gt;
  4. I have passed the view?ReadViewEntries in the ajax call. But I got only 10 viewentries instead of 1000. After that I just walk around the blogs of notes expert, I found the nice article, I am sharing in below,&lt;br /&gt;
  5. &lt;br /&gt;
  6. &lt;a href=&quot;http://macguidera.blogspot.com/2006/08/readviewentries.html&quot; target=&quot;_blank&quot;&gt;http://macguidera.blogspot.com/2006/08/readviewentries.html&lt;/a&gt;&lt;br /&gt;
  7. &lt;br /&gt;
  8. Thanks for the above post...&lt;/div&gt;
  9. </description><link>http://kramkumarmca.blogspot.com/2016/03/lotus-notes-view-readviewentries.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-1863083882015723417</guid><pubDate>Wed, 24 Jun 2015 06:34:00 +0000</pubDate><atom:updated>2015-06-24T12:04:37.776+05:30</atom:updated><title>Convert the NotesDocument into PDF</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  10. Here is the interesting stuff comes again, I need to convert all the documents into pdf file. I started my research on that, initially I thought it was easy because I have already worked on that but last time I did not handle/ convert Rich Text item. Creating table, designing the PDF template all are very easy. But getting the handle of inline images in Rich Text Item is very difficult, if you do not want to spend money.&lt;br /&gt;
  11. &lt;br /&gt;
  12. &amp;nbsp;I have done my design using itext.jar, and created my own PDF template for document. Now I captured all the infos like Text, Text List, Date/Time, Names and etc., except RTF and RT lite field. &lt;br /&gt;
  13. &lt;br /&gt;
  14. &amp;nbsp;I started to work on attach the file into pdf, started with hard but ended with very easy. I extracted file from RTF and saved in the local machine temp folder and attached into the PDF. Thanks a lot to iText.jar.&lt;br /&gt;
  15. &lt;br /&gt;
  16. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: blue;&quot;&gt;RichTextItem rt = (RichTextItem) &amp;nbsp;doc.getFirstItem(&quot;Body&quot;);&lt;/span&gt;&lt;br /&gt;
  17. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Vector ve = rt.getEmbeddedObjects();&lt;/span&gt;&lt;br /&gt;
  18. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EmbeddedObject eo = null;&lt;/span&gt;&lt;br /&gt;
  19. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Enumeration e = ve.elements();&lt;/span&gt;&lt;br /&gt;
  20. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(ve.size() &amp;gt; 0)&lt;/span&gt;&lt;br /&gt;
  21. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;
  22. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;attachments = new String[ve.size()];&lt;/span&gt;&lt;br /&gt;
  23. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while (e.hasMoreElements()) {&lt;/span&gt;&lt;br /&gt;
  24. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;eo = (EmbeddedObject)e.nextElement();&lt;/span&gt;&lt;br /&gt;
  25. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;eo.extractFile(&quot;C:\\Temp\\&quot; +eo.getSource());&lt;/span&gt;&lt;br /&gt;
  26. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;attachments[count] = &quot;C:\\Temp\\&quot; +eo.getSource();&lt;/span&gt;&lt;br /&gt;
  27. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;
  28. &lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;
  29. Code for attaching the file into PDF file... The below is not from my knowledge it is taken from one blog, I forgot because long back I have taken this piece of code. Sorry and don&#39;t mind :D&lt;br /&gt;
  30. &lt;br /&gt;
  31. &lt;span style=&quot;color: blue;&quot;&gt;public void addAttachments(&lt;/span&gt;&lt;br /&gt;
  32. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;String src, String dest, String[] attachments) throws IOException, DocumentException {&lt;/span&gt;&lt;br /&gt;
  33. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;PdfReader reader = new PdfReader(src);&lt;/span&gt;&lt;br /&gt;
  34. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));&lt;/span&gt;&lt;br /&gt;
  35. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;for (int i = 0; i &amp;lt; attachments.length; i++) {&lt;/span&gt;&lt;br /&gt;
  36. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp; &amp;nbsp;addAttachment(stamper.getWriter(), new File(attachments[i]));&lt;/span&gt;&lt;br /&gt;
  37. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;
  38. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;
  39. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;stamper.close();&lt;/span&gt;&lt;br /&gt;
  40. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;}&lt;/span&gt;&lt;br /&gt;
  41. &lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
  42. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;protected void addAttachment(PdfWriter writer, File src) throws IOException {&lt;/span&gt;&lt;br /&gt;
  43. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;PdfFileSpecification fs =&lt;/span&gt;&lt;br /&gt;
  44. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp; &amp;nbsp;PdfFileSpecification.fileEmbedded(writer, src.getAbsolutePath(), src.getName(), null);&lt;/span&gt;&lt;br /&gt;
  45. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt; &amp;nbsp;writer.addFileAttachment(src.getName().substring(0, src.getName().indexOf(&#39;.&#39;)), fs);&lt;/span&gt;&lt;br /&gt;
  46. &lt;span style=&quot;color: blue;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;}&lt;/span&gt;&lt;br /&gt;
  47. Once everything is set I have entered into the tough task, that is converting the inline image to attachment/ embed the same image in PDF file. Both are difficult.&lt;br /&gt;
  48. &lt;br /&gt;
  49. &lt;br /&gt;
  50. &lt;ol style=&quot;text-align: left;&quot;&gt;
  51. &lt;li&gt;I just gone through the PDF creator class and convert the document into pdf file like Prrint -&amp;gt; Save as PDF using PDF creator tool. But the result, I faced so many difficulties, somemachine adopt the code and close the PDF file, many machine can not close the PDF object so my notes gets crashed. So I do not want to go with PDF creator. For this PDF creator needs to be installed on your PC.&lt;/li&gt;
  52. &lt;li&gt;I just googled and found that midas is the lotus script library, it is good but it is not free software.&amp;nbsp;&lt;/li&gt;
  53. &lt;li&gt;I just found many automated tools like swing PDF converter, etc., but it is quite expensive. I do not want to spend money on that.&amp;nbsp;&lt;/li&gt;
  54. &lt;li&gt;I have gone through many blogs and discussion portals. I could not find the proper code for that.&lt;/li&gt;
  55. &lt;/ol&gt;
  56. &lt;div&gt;
  57. Finally I just created webpage for my application, we have many easy tool for converting the HTML page to PDF. I just converted the Notes HTML document to PDF file, and extract the attachment and saved it in local folder. I embedded the attachment into the above pdf file. I have reached my goal, I do not think it is good and efficient.&lt;br /&gt;
  58. &lt;br /&gt;
  59. Still my research on handling the inline image of RTI is going on, :( :( :(&lt;/div&gt;
  60. &lt;br /&gt;
  61. &lt;br /&gt;
  62. &lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
  63. </description><link>http://kramkumarmca.blogspot.com/2015/06/convert-notesdocument-into-pdf.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-7729819298955110716</guid><pubDate>Thu, 23 May 2013 04:37:00 +0000</pubDate><atom:updated>2013-05-23T10:07:25.315+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>Read the XML in Lotus Notes</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  64. Really very hard to understand the structure of the Notes XML parsing classes. Still I need to understand more. Actually I tried to read the xml file for some requirement.&lt;br /&gt;
  65. &lt;br /&gt;
  66. Initially I thought it is an easy job but after an half of the day had gone, I realized it is difficult one. &lt;br /&gt;
  67. &lt;br /&gt;
  68. If someone has nice trick please share to me...&lt;br /&gt;
  69. &lt;br /&gt;
  70. &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;b&gt;Dim session As New NotesSession&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim domparser As NotesDOMParser&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim domdoc As NotesDOMDocumentNode&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim domlist As NotesDOMNodeList&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim domlist1 As NotesDOMNodeList&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim domele As NotesDOMElementNode&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim stream As NotesStream&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim node As NotesDOMNode&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim node1 As NotesDOMNode&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x As String&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; x= &quot;D:\javap\Test.xml&quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set stream = session.CreateStream()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; stream.open(x)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set domParser = session.CreateDOMParser(stream)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; domParser.Process&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set domdoc = domparser.Document&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set domele = domparser.Document.DocumentElement&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set domlist = domele.GetElementsByTagName(&quot;TagName&quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set node =&amp;nbsp; domlist.GetItem(1)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Msgbox node.FirstChild.NodeValue&lt;br /&gt;&amp;nbsp; &lt;/b&gt;&lt;/div&gt;
  71. </description><link>http://kramkumarmca.blogspot.com/2013/05/read-xml-in-lotus-notes.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>5</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-8537113919182467873</guid><pubDate>Mon, 20 May 2013 09:23:00 +0000</pubDate><atom:updated>2013-05-20T14:53:58.588+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Windows</category><title>Windows Run Command</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  72. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  73. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;&lt;/th&gt;&lt;/tr&gt;
  74. &lt;/tbody&gt;&lt;/table&gt;
  75. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  76. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;&lt;/th&gt;&lt;/tr&gt;
  77. &lt;/tbody&gt;&lt;/table&gt;
  78. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  79. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;&lt;/th&gt;&lt;/tr&gt;
  80. &lt;/tbody&gt;&lt;/table&gt;
  81. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  82. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;&lt;/th&gt;&lt;/tr&gt;
  83. &lt;/tbody&gt;&lt;/table&gt;
  84. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  85. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;For lazy users like me, sometime our job will be get bored because we need to do the same job for as many time. Also we need to interact with the windows frequently. Probably we can create macro or agent for doing the particular job for as many times. However we can not do this for all cases. The below are the interesting stuff. These are the Run Commands in windows. I hope this will be very useful. I found this in the following site...&lt;br /&gt;
  86. &lt;br /&gt;&lt;a href=&quot;http://mypchell.com/guides/34-guides/69-156-useful-run-commands&quot; target=&quot;_blank&quot;&gt;-Useful-Run-Commands&lt;/a&gt;&lt;br /&gt;
  87. &lt;/th&gt;&lt;/tr&gt;
  88. &lt;/tbody&gt;&lt;/table&gt;
  89. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  90. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;&lt;/th&gt;&lt;/tr&gt;
  91. &lt;/tbody&gt;&lt;/table&gt;
  92. &lt;table class=&quot;runcmds-table&quot;&gt;&lt;tbody&gt;
  93. &lt;tr class=&quot;runcmds-firstrow&quot;&gt;&lt;th&gt;To Access…&lt;/th&gt;&lt;th&gt;Run Command&lt;/th&gt;&lt;/tr&gt;
  94. &lt;tr&gt;&lt;td&gt;Accessibility Controls  &lt;/td&gt;&lt;td&gt;access.cpl  &lt;/td&gt;&lt;/tr&gt;
  95. &lt;tr&gt;&lt;td&gt;Accessibility Wizard&lt;/td&gt;&lt;td&gt;accwiz&lt;/td&gt;&lt;/tr&gt;
  96. &lt;tr&gt;&lt;td&gt;Add Hardware Wizard&lt;/td&gt;&lt;td&gt;hdwwiz.cpl &lt;/td&gt;&lt;/tr&gt;
  97. &lt;tr&gt;&lt;td&gt;Add/Remove Programs &lt;/td&gt;&lt;td&gt;appwiz.cpl &lt;/td&gt;&lt;/tr&gt;
  98. &lt;tr&gt;&lt;td&gt;Administrative Tools&lt;/td&gt;&lt;td&gt;control admintools &lt;/td&gt;&lt;/tr&gt;
  99. &lt;tr&gt;&lt;td&gt;Adobe Acrobat (if installed)&lt;/td&gt;&lt;td&gt;acrobat&lt;/td&gt;&lt;/tr&gt;
  100. &lt;tr&gt;&lt;td&gt;Adobe Designer (if installed)&lt;/td&gt;&lt;td&gt;formdesigner&lt;/td&gt;&lt;/tr&gt;
  101. &lt;tr&gt;&lt;td&gt;Adobe Distiller (if installed)&lt;/td&gt;&lt;td&gt;acrodist&lt;/td&gt;&lt;/tr&gt;
  102. &lt;tr&gt;&lt;td&gt;Adobe ImageReady (if installed)&lt;/td&gt;&lt;td&gt;imageready&lt;/td&gt;&lt;/tr&gt;
  103. &lt;tr&gt;&lt;td&gt;Adobe Photoshop (if installed)&lt;/td&gt;&lt;td&gt;photoshop&lt;/td&gt;&lt;/tr&gt;
  104. &lt;tr&gt;&lt;td&gt;Automatic Updates&lt;/td&gt;&lt;td&gt;wuaucpl.cpl&lt;/td&gt;&lt;/tr&gt;
  105. &lt;tr&gt;&lt;td&gt;Bluetooth Transfer Wizard&lt;/td&gt;&lt;td&gt;fsquirt&lt;/td&gt;&lt;/tr&gt;
  106. &lt;tr&gt;&lt;td&gt;Calculator&lt;/td&gt;&lt;td&gt;calc&lt;/td&gt;&lt;/tr&gt;
  107. &lt;tr&gt;&lt;td&gt;Certificate Manager&lt;/td&gt;&lt;td&gt;certmgr.msc&lt;/td&gt;&lt;/tr&gt;
  108. &lt;tr&gt;&lt;td&gt;Character Map&lt;/td&gt;&lt;td&gt;charmap&lt;/td&gt;&lt;/tr&gt;
  109. &lt;tr&gt;&lt;td&gt;Check Disk Utility&lt;/td&gt;&lt;td&gt;chkdsk&lt;/td&gt;&lt;/tr&gt;
  110. &lt;tr&gt;&lt;td&gt;Clipboard Viewer&lt;/td&gt;&lt;td&gt;clipbrd&lt;/td&gt;&lt;/tr&gt;
  111. &lt;tr&gt;&lt;td&gt;Command Prompt&lt;/td&gt;&lt;td&gt;cmd&lt;/td&gt;&lt;/tr&gt;
  112. &lt;tr&gt;&lt;td&gt;Component Services&lt;/td&gt;&lt;td&gt;dcomcnfg&lt;/td&gt;&lt;/tr&gt;
  113. &lt;tr&gt;&lt;td&gt;Computer Management&lt;/td&gt;&lt;td&gt;compmgmt.msc&lt;/td&gt;&lt;/tr&gt;
  114. &lt;tr&gt;&lt;td&gt;Control Panel&lt;/td&gt;&lt;td&gt;control&lt;/td&gt;&lt;/tr&gt;
  115. &lt;tr&gt;&lt;td&gt;Date and Time Properties &lt;/td&gt;&lt;td&gt;timedate.cpl &lt;/td&gt;&lt;/tr&gt;
  116. &lt;tr&gt;&lt;td&gt;DDE Shares &lt;/td&gt;&lt;td&gt;ddeshare&lt;/td&gt;&lt;/tr&gt;
  117. &lt;tr&gt;&lt;td&gt;Device Manager&lt;/td&gt;&lt;td&gt;devmgmt.msc&lt;/td&gt;&lt;/tr&gt;
  118. &lt;tr&gt;&lt;td&gt;Direct X Control Panel (if installed)*&lt;/td&gt;&lt;td&gt;directx.cpl&lt;/td&gt;&lt;/tr&gt;
  119. &lt;tr&gt;&lt;td&gt;Direct X Troubleshooter&lt;/td&gt;&lt;td&gt;dxdiag&lt;/td&gt;&lt;/tr&gt;
  120. &lt;tr&gt;&lt;td&gt;Disk Cleanup Utility&lt;/td&gt;&lt;td&gt;cleanmgr&lt;/td&gt;&lt;/tr&gt;
  121. &lt;tr&gt;&lt;td&gt;Disk Defragment&lt;/td&gt;&lt;td&gt;dfrg.msc&lt;/td&gt;&lt;/tr&gt;
  122. &lt;tr&gt;&lt;td&gt;Disk Management&lt;/td&gt;&lt;td&gt;diskmgmt.msc&lt;/td&gt;&lt;/tr&gt;
  123. &lt;tr&gt;&lt;td&gt;Disk Partition Manager&lt;/td&gt;&lt;td&gt;diskpart&lt;/td&gt;&lt;/tr&gt;
  124. &lt;tr&gt;&lt;td&gt;Display Properties&lt;/td&gt;&lt;td&gt;control desktop &lt;/td&gt;&lt;/tr&gt;
  125. &lt;tr&gt;&lt;td&gt;Display Properties&lt;/td&gt;&lt;td&gt;desk.cpl&lt;/td&gt;&lt;/tr&gt;
  126. &lt;tr&gt;&lt;td&gt;Display Properties (w/Appearance Tab Preselected)&lt;/td&gt;&lt;td&gt;control color &lt;/td&gt;&lt;/tr&gt;
  127. &lt;tr&gt;&lt;td&gt;Dr. Watson System Troubleshooting Utility&lt;/td&gt;&lt;td&gt;drwtsn32&lt;/td&gt;&lt;/tr&gt;
  128. &lt;tr&gt;&lt;td&gt;Driver Verifier Utility&lt;/td&gt;&lt;td&gt;verifier&lt;/td&gt;&lt;/tr&gt;
  129. &lt;tr&gt;&lt;td&gt;Event Viewer&lt;/td&gt;&lt;td&gt;eventvwr.msc&lt;/td&gt;&lt;/tr&gt;
  130. &lt;tr&gt;&lt;td&gt;Files and Settings Transfer Tool&lt;/td&gt;&lt;td&gt;migwiz&lt;/td&gt;&lt;/tr&gt;
  131. &lt;tr&gt;&lt;td&gt;File Signature Verification Tool&lt;/td&gt;&lt;td&gt;sigverif&lt;/td&gt;&lt;/tr&gt;
  132. &lt;tr&gt;&lt;td&gt;Findfast&lt;/td&gt;&lt;td&gt;findfast.cpl&lt;/td&gt;&lt;/tr&gt;
  133. &lt;tr&gt;&lt;td&gt;Firefox (if installed) &lt;/td&gt;&lt;td&gt;firefox&lt;/td&gt;&lt;/tr&gt;
  134. &lt;tr&gt;&lt;td&gt;Folders Properties&lt;/td&gt;&lt;td&gt;folders&lt;/td&gt;&lt;/tr&gt;
  135. &lt;tr&gt;&lt;td&gt;Fonts&lt;/td&gt;&lt;td&gt;control fonts &lt;/td&gt;&lt;/tr&gt;
  136. &lt;tr&gt;&lt;td&gt;Fonts Folder&lt;/td&gt;&lt;td&gt;fonts&lt;/td&gt;&lt;/tr&gt;
  137. &lt;tr&gt;&lt;td&gt;Free Cell Card Game&lt;/td&gt;&lt;td&gt;freecell&lt;/td&gt;&lt;/tr&gt;
  138. &lt;tr&gt;&lt;td&gt;Game Controllers &lt;/td&gt;&lt;td&gt;joy.cpl &lt;/td&gt;&lt;/tr&gt;
  139. &lt;tr&gt;&lt;td&gt;Group Policy Editor (XP Prof)&lt;/td&gt;&lt;td&gt;gpedit.msc&lt;/td&gt;&lt;/tr&gt;
  140. &lt;tr&gt;&lt;td&gt;Hearts Card Game&lt;/td&gt;&lt;td&gt;mshearts&lt;/td&gt;&lt;/tr&gt;
  141. &lt;tr&gt;&lt;td&gt;Help and Support&lt;/td&gt;&lt;td&gt;helpctr&lt;/td&gt;&lt;/tr&gt;
  142. &lt;tr&gt;&lt;td&gt;HyperTerminal&lt;/td&gt;&lt;td&gt;hypertrm&lt;/td&gt;&lt;/tr&gt;
  143. &lt;tr&gt;&lt;td&gt;Iexpress Wizard&lt;/td&gt;&lt;td&gt;iexpress&lt;/td&gt;&lt;/tr&gt;
  144. &lt;tr&gt;&lt;td&gt;Indexing Service&lt;/td&gt;&lt;td&gt;ciadv.msc&lt;/td&gt;&lt;/tr&gt;
  145. &lt;tr&gt;&lt;td&gt;Internet Connection Wizard&lt;/td&gt;&lt;td&gt;icwconn1&lt;/td&gt;&lt;/tr&gt;
  146. &lt;tr&gt;&lt;td&gt;Internet Explorer&lt;/td&gt;&lt;td&gt;iexplore&lt;/td&gt;&lt;/tr&gt;
  147. &lt;tr&gt;&lt;td&gt;Internet Properties &lt;/td&gt;&lt;td&gt;inetcpl.cpl &lt;/td&gt;&lt;/tr&gt;
  148. &lt;tr&gt;&lt;td&gt;Internet Setup Wizard&lt;/td&gt;&lt;td&gt;inetwiz&lt;/td&gt;&lt;/tr&gt;
  149. &lt;tr&gt;&lt;td&gt;IP Configuration (Display Connection Configuration)&lt;/td&gt;&lt;td&gt;ipconfig /all&lt;/td&gt;&lt;/tr&gt;
  150. &lt;tr&gt;&lt;td&gt;IP Configuration (Display DNS Cache Contents)&lt;/td&gt;&lt;td&gt;ipconfig /displaydns&lt;/td&gt;&lt;/tr&gt;
  151. &lt;tr&gt;&lt;td&gt;IP Configuration (Delete DNS Cache Contents)&lt;/td&gt;&lt;td&gt;ipconfig /flushdns&lt;/td&gt;&lt;/tr&gt;
  152. &lt;tr&gt;&lt;td&gt;IP Configuration (Release All Connections)&lt;/td&gt;&lt;td&gt;ipconfig /release&lt;/td&gt;&lt;/tr&gt;
  153. &lt;tr&gt;&lt;td&gt;IP Configuration (Renew All Connections)&lt;/td&gt;&lt;td&gt;ipconfig /renew&lt;/td&gt;&lt;/tr&gt;
  154. &lt;tr&gt;&lt;td&gt;IP Configuration (Refreshes DHCP &amp;amp; Re-Registers DNS)&lt;/td&gt;&lt;td&gt;ipconfig /registerdns&lt;/td&gt;&lt;/tr&gt;
  155. &lt;tr&gt;&lt;td&gt;IP Configuration (Display DHCP Class ID)&lt;/td&gt;&lt;td&gt;ipconfig /showclassid&lt;/td&gt;&lt;/tr&gt;
  156. &lt;tr&gt;&lt;td&gt;IP Configuration (Modifies DHCP Class ID)&lt;/td&gt;&lt;td&gt;ipconfig /setclassid&lt;/td&gt;&lt;/tr&gt;
  157. &lt;tr&gt;&lt;td&gt;Java Control Panel (if installed)&lt;/td&gt;&lt;td&gt;jpicpl32.cpl&lt;/td&gt;&lt;/tr&gt;
  158. &lt;tr&gt;&lt;td&gt;Java Control Panel (if installed)&lt;/td&gt;&lt;td&gt;javaws&lt;/td&gt;&lt;/tr&gt;
  159. &lt;tr&gt;&lt;td&gt;Keyboard Properties&lt;/td&gt;&lt;td&gt;control keyboard &lt;/td&gt;&lt;/tr&gt;
  160. &lt;tr&gt;&lt;td&gt;Local Security Settings&lt;/td&gt;&lt;td&gt;secpol.msc&lt;/td&gt;&lt;/tr&gt;
  161. &lt;tr&gt;&lt;td&gt;Local Users and Groups&lt;/td&gt;&lt;td&gt;lusrmgr.msc&lt;/td&gt;&lt;/tr&gt;
  162. &lt;tr&gt;&lt;td&gt;Logs You Out Of Windows &lt;/td&gt;&lt;td&gt;logoff&lt;/td&gt;&lt;/tr&gt;
  163. &lt;tr&gt;&lt;td&gt;Malicious Software Removal Tool &lt;/td&gt;&lt;td&gt;mrt&lt;/td&gt;&lt;/tr&gt;
  164. &lt;tr&gt;&lt;td&gt;Microsoft Access (if installed)&lt;/td&gt;&lt;td&gt;msaccess&lt;/td&gt;&lt;/tr&gt;
  165. &lt;tr&gt;&lt;td&gt;Microsoft Chat&lt;/td&gt;&lt;td&gt;winchat&lt;/td&gt;&lt;/tr&gt;
  166. &lt;tr&gt;&lt;td&gt;Microsoft Excel (if installed)&lt;/td&gt;&lt;td&gt;excel&lt;/td&gt;&lt;/tr&gt;
  167. &lt;tr&gt;&lt;td&gt;Microsoft Frontpage (if installed)&lt;/td&gt;&lt;td&gt;frontpg&lt;/td&gt;&lt;/tr&gt;
  168. &lt;tr&gt;&lt;td&gt;Microsoft Movie Maker&lt;/td&gt;&lt;td&gt;moviemk&lt;/td&gt;&lt;/tr&gt;
  169. &lt;tr&gt;&lt;td&gt;Microsoft Paint&lt;/td&gt;&lt;td&gt;mspaint&lt;/td&gt;&lt;/tr&gt;
  170. &lt;tr&gt;&lt;td&gt;Microsoft Powerpoint (if installed)&lt;/td&gt;&lt;td&gt;powerpnt&lt;/td&gt;&lt;/tr&gt;
  171. &lt;tr&gt;&lt;td&gt;Microsoft Word (if installed)&lt;/td&gt;&lt;td&gt;winword&lt;/td&gt;&lt;/tr&gt;
  172. &lt;tr&gt;&lt;td&gt;Microsoft Syncronization Tool&lt;/td&gt;&lt;td&gt;mobsync&lt;/td&gt;&lt;/tr&gt;
  173. &lt;tr&gt;&lt;td&gt;Minesweeper Game&lt;/td&gt;&lt;td&gt;winmine&lt;/td&gt;&lt;/tr&gt;
  174. &lt;tr&gt;&lt;td&gt;Mouse Properties&lt;/td&gt;&lt;td&gt;control mouse &lt;/td&gt;&lt;/tr&gt;
  175. &lt;tr&gt;&lt;td&gt;Mouse Properties&lt;/td&gt;&lt;td&gt;main.cpl&lt;/td&gt;&lt;/tr&gt;
  176. &lt;tr&gt;&lt;td&gt;Nero (if installed)&lt;/td&gt;&lt;td&gt;nero&lt;/td&gt;&lt;/tr&gt;
  177. &lt;tr&gt;&lt;td&gt;Netmeeting &lt;/td&gt;&lt;td&gt;conf&lt;/td&gt;&lt;/tr&gt;
  178. &lt;tr&gt;&lt;td&gt;Network Connections&lt;/td&gt;&lt;td&gt;control netconnections &lt;/td&gt;&lt;/tr&gt;
  179. &lt;tr&gt;&lt;td&gt;Network Connections&lt;/td&gt;&lt;td&gt;ncpa.cpl &lt;/td&gt;&lt;/tr&gt;
  180. &lt;tr&gt;&lt;td&gt;Network Setup Wizard&lt;/td&gt;&lt;td&gt;netsetup.cpl&lt;/td&gt;&lt;/tr&gt;
  181. &lt;tr&gt;&lt;td&gt;Notepad&lt;/td&gt;&lt;td&gt;notepad&lt;/td&gt;&lt;/tr&gt;
  182. &lt;tr&gt;&lt;td&gt;Nview Desktop Manager (if installed)&lt;/td&gt;&lt;td&gt;nvtuicpl.cpl&lt;/td&gt;&lt;/tr&gt;
  183. &lt;tr&gt;&lt;td&gt;Object Packager&lt;/td&gt;&lt;td&gt;packager&lt;/td&gt;&lt;/tr&gt;
  184. &lt;tr&gt;&lt;td&gt;ODBC Data Source Administrator&lt;/td&gt;&lt;td&gt;odbccp32.cpl&lt;/td&gt;&lt;/tr&gt;
  185. &lt;tr&gt;&lt;td&gt;On Screen Keyboard&lt;/td&gt;&lt;td&gt;osk&lt;/td&gt;&lt;/tr&gt;
  186. &lt;tr&gt;&lt;td&gt;Opens AC3 Filter (if installed)&lt;/td&gt;&lt;td&gt;ac3filter.cpl&lt;/td&gt;&lt;/tr&gt;
  187. &lt;tr&gt;&lt;td&gt;Outlook Express&lt;/td&gt;&lt;td&gt;msimn&lt;/td&gt;&lt;/tr&gt;
  188. &lt;tr&gt;&lt;td&gt;Paint&lt;/td&gt;&lt;td&gt;pbrush&lt;/td&gt;&lt;/tr&gt;
  189. &lt;tr&gt;&lt;td&gt;Password Properties&lt;/td&gt;&lt;td&gt;password.cpl&lt;/td&gt;&lt;/tr&gt;
  190. &lt;tr&gt;&lt;td&gt;Performance Monitor&lt;/td&gt;&lt;td&gt;perfmon.msc&lt;/td&gt;&lt;/tr&gt;
  191. &lt;tr&gt;&lt;td&gt;Performance Monitor&lt;/td&gt;&lt;td&gt;perfmon&lt;/td&gt;&lt;/tr&gt;
  192. &lt;tr&gt;&lt;td&gt;Phone and Modem Options &lt;/td&gt;&lt;td&gt;telephon.cpl &lt;/td&gt;&lt;/tr&gt;
  193. &lt;tr&gt;&lt;td&gt;Phone Dialer&lt;/td&gt;&lt;td&gt;dialer&lt;/td&gt;&lt;/tr&gt;
  194. &lt;tr&gt;&lt;td&gt;Pinball Game&lt;/td&gt;&lt;td&gt;pinball&lt;/td&gt;&lt;/tr&gt;
  195. &lt;tr&gt;&lt;td&gt;Power Configuration &lt;/td&gt;&lt;td&gt;powercfg.cpl &lt;/td&gt;&lt;/tr&gt;
  196. &lt;tr&gt;&lt;td&gt;Printers and Faxes&lt;/td&gt;&lt;td&gt;control printers &lt;/td&gt;&lt;/tr&gt;
  197. &lt;tr&gt;&lt;td&gt;Printers Folder&lt;/td&gt;&lt;td&gt;printers&lt;/td&gt;&lt;/tr&gt;
  198. &lt;tr&gt;&lt;td&gt;Private Character Editor&lt;/td&gt;&lt;td&gt;eudcedit&lt;/td&gt;&lt;/tr&gt;
  199. &lt;tr&gt;&lt;td&gt;Quicktime (If Installed)&lt;/td&gt;&lt;td&gt;QuickTime.cpl&lt;/td&gt;&lt;/tr&gt;
  200. &lt;tr&gt;&lt;td&gt;Quicktime Player (if installed)&lt;/td&gt;&lt;td&gt;quicktimeplayer&lt;/td&gt;&lt;/tr&gt;
  201. &lt;tr&gt;&lt;td&gt;Real Player (if installed)&lt;/td&gt;&lt;td&gt;realplay&lt;/td&gt;&lt;/tr&gt;
  202. &lt;tr&gt;&lt;td&gt;Regional Settings &lt;/td&gt;&lt;td&gt;intl.cpl &lt;/td&gt;&lt;/tr&gt;
  203. &lt;tr&gt;&lt;td&gt;Registry Editor&lt;/td&gt;&lt;td&gt;regedit&lt;/td&gt;&lt;/tr&gt;
  204. &lt;tr&gt;&lt;td&gt;Registry Editor&lt;/td&gt;&lt;td&gt;regedit32&lt;/td&gt;&lt;/tr&gt;
  205. &lt;tr&gt;&lt;td&gt;Remote Access Phonebook&lt;/td&gt;&lt;td&gt;rasphone&lt;/td&gt;&lt;/tr&gt;
  206. &lt;tr&gt;&lt;td&gt;Remote Desktop &lt;/td&gt;&lt;td&gt;mstsc&lt;/td&gt;&lt;/tr&gt;
  207. &lt;tr&gt;&lt;td&gt;Removable Storage&lt;/td&gt;&lt;td&gt;ntmsmgr.msc&lt;/td&gt;&lt;/tr&gt;
  208. &lt;tr&gt;&lt;td&gt;Removable Storage Operator Requests&lt;/td&gt;&lt;td&gt;ntmsoprq.msc&lt;/td&gt;&lt;/tr&gt;
  209. &lt;tr&gt;&lt;td&gt;Resultant Set of Policy (XP Prof)&lt;/td&gt;&lt;td&gt;rsop.msc&lt;/td&gt;&lt;/tr&gt;
  210. &lt;tr&gt;&lt;td&gt;Scanners and Cameras&lt;/td&gt;&lt;td&gt;sticpl.cpl&lt;/td&gt;&lt;/tr&gt;
  211. &lt;tr&gt;&lt;td&gt;Scheduled Tasks&lt;/td&gt;&lt;td&gt;control schedtasks &lt;/td&gt;&lt;/tr&gt;
  212. &lt;tr&gt;&lt;td&gt;Security Center &lt;/td&gt;&lt;td&gt;wscui.cpl&lt;/td&gt;&lt;/tr&gt;
  213. &lt;tr&gt;&lt;td&gt;Services&lt;/td&gt;&lt;td&gt;services.msc&lt;/td&gt;&lt;/tr&gt;
  214. &lt;tr&gt;&lt;td&gt;Shared Folders&lt;/td&gt;&lt;td&gt;fsmgmt.msc&lt;/td&gt;&lt;/tr&gt;
  215. &lt;tr&gt;&lt;td&gt;Shuts Down Windows&lt;/td&gt;&lt;td&gt;shutdown&lt;/td&gt;&lt;/tr&gt;
  216. &lt;tr&gt;&lt;td&gt;Sounds and Audio &lt;/td&gt;&lt;td&gt;mmsys.cpl &lt;/td&gt;&lt;/tr&gt;
  217. &lt;tr&gt;&lt;td&gt;Spider Solitare Card Game&lt;/td&gt;&lt;td&gt;spider&lt;/td&gt;&lt;/tr&gt;
  218. &lt;tr&gt;&lt;td&gt;SQL Client Configuration &lt;/td&gt;&lt;td&gt;cliconfg&lt;/td&gt;&lt;/tr&gt;
  219. &lt;tr&gt;&lt;td&gt;System Configuration Editor&lt;/td&gt;&lt;td&gt;sysedit&lt;/td&gt;&lt;/tr&gt;
  220. &lt;tr&gt;&lt;td&gt;System Configuration Utility&lt;/td&gt;&lt;td&gt;msconfig&lt;/td&gt;&lt;/tr&gt;
  221. &lt;tr&gt;&lt;td&gt;System File Checker Utility (Scan Immediately)&lt;/td&gt;&lt;td&gt;sfc /scannow&lt;/td&gt;&lt;/tr&gt;
  222. &lt;tr&gt;&lt;td&gt;System File Checker Utility (Scan Once At The Next Boot)&lt;/td&gt;&lt;td&gt;sfc /scanonce&lt;/td&gt;&lt;/tr&gt;
  223. &lt;tr&gt;&lt;td&gt;System File Checker Utility (Scan On Every Boot)&lt;/td&gt;&lt;td&gt;sfc /scanboot&lt;/td&gt;&lt;/tr&gt;
  224. &lt;tr&gt;&lt;td&gt;System File Checker Utility (Return Scan Setting To Default)&lt;/td&gt;&lt;td&gt;sfc /revert&lt;/td&gt;&lt;/tr&gt;
  225. &lt;tr&gt;&lt;td&gt;System File Checker Utility (Purge File Cache)&lt;/td&gt;&lt;td&gt;sfc /purgecache&lt;/td&gt;&lt;/tr&gt;
  226. &lt;tr&gt;&lt;td&gt;System File Checker Utility (Sets Cache Size to size x)&lt;/td&gt;&lt;td&gt;sfc /cachesize=x&lt;/td&gt;&lt;/tr&gt;
  227. &lt;tr&gt;&lt;td&gt;System Information&lt;/td&gt;&lt;td&gt;msinfo32&lt;/td&gt;&lt;/tr&gt;
  228. &lt;tr&gt;&lt;td&gt;System Properties &lt;/td&gt;&lt;td&gt;sysdm.cpl &lt;/td&gt;&lt;/tr&gt;
  229. &lt;tr&gt;&lt;td&gt;Task Manager&lt;/td&gt;&lt;td&gt;taskmgr&lt;/td&gt;&lt;/tr&gt;
  230. &lt;tr&gt;&lt;td&gt;TCP Tester&lt;/td&gt;&lt;td&gt;tcptest&lt;/td&gt;&lt;/tr&gt;
  231. &lt;tr&gt;&lt;td&gt;Telnet Client&lt;/td&gt;&lt;td&gt;telnet&lt;/td&gt;&lt;/tr&gt;
  232. &lt;tr&gt;&lt;td&gt;Tweak UI (if installed)&lt;/td&gt;&lt;td&gt;tweakui&lt;/td&gt;&lt;/tr&gt;
  233. &lt;tr&gt;&lt;td&gt;User Account Management&lt;/td&gt;&lt;td&gt;nusrmgr.cpl&lt;/td&gt;&lt;/tr&gt;
  234. &lt;tr&gt;&lt;td&gt;Utility Manager&lt;/td&gt;&lt;td&gt;utilman&lt;/td&gt;&lt;/tr&gt;
  235. &lt;tr&gt;&lt;td&gt;Windows Address Book&lt;/td&gt;&lt;td&gt;wab&lt;/td&gt;&lt;/tr&gt;
  236. &lt;tr&gt;&lt;td&gt;Windows Address Book Import Utility&lt;/td&gt;&lt;td&gt;wabmig&lt;/td&gt;&lt;/tr&gt;
  237. &lt;tr&gt;&lt;td&gt;Windows Backup Utility (if installed)&lt;/td&gt;&lt;td&gt;ntbackup&lt;/td&gt;&lt;/tr&gt;
  238. &lt;tr&gt;&lt;td&gt;Windows Explorer&lt;/td&gt;&lt;td&gt;explorer&lt;/td&gt;&lt;/tr&gt;
  239. &lt;tr&gt;&lt;td&gt;Windows Firewall&lt;/td&gt;&lt;td&gt;firewall.cpl&lt;/td&gt;&lt;/tr&gt;
  240. &lt;tr&gt;&lt;td&gt;Windows Magnifier &lt;/td&gt;&lt;td&gt;magnify&lt;/td&gt;&lt;/tr&gt;
  241. &lt;tr&gt;&lt;td&gt;Windows Management Infrastructure&lt;/td&gt;&lt;td&gt;wmimgmt.msc&lt;/td&gt;&lt;/tr&gt;
  242. &lt;tr&gt;&lt;td&gt;Windows Media Player&lt;/td&gt;&lt;td&gt;wmplayer&lt;/td&gt;&lt;/tr&gt;
  243. &lt;tr&gt;&lt;td&gt;Windows Messenger&lt;/td&gt;&lt;td&gt;msmsgs&lt;/td&gt;&lt;/tr&gt;
  244. &lt;tr&gt;&lt;td&gt;Windows Picture Import Wizard (need camera connected)&lt;/td&gt;&lt;td&gt;wiaacmgr&lt;/td&gt;&lt;/tr&gt;
  245. &lt;tr&gt;&lt;td&gt;Windows System Security Tool&lt;/td&gt;&lt;td&gt;syskey&lt;/td&gt;&lt;/tr&gt;
  246. &lt;tr&gt;&lt;td&gt;Windows Update Launches&lt;/td&gt;&lt;td&gt;wupdmgr&lt;/td&gt;&lt;/tr&gt;
  247. &lt;tr&gt;&lt;td&gt;Windows Version (to show which version of windows)&lt;/td&gt;&lt;td&gt;winver&lt;/td&gt;&lt;/tr&gt;
  248. &lt;tr&gt;&lt;td&gt;Windows XP Tour Wizard&lt;/td&gt;&lt;td&gt;tourstart&lt;/td&gt;&lt;/tr&gt;
  249. &lt;tr&gt;&lt;td&gt;Wordpad &lt;/td&gt;&lt;td&gt;write&lt;/td&gt;&lt;/tr&gt;
  250. &lt;/tbody&gt;&lt;/table&gt;
  251. &lt;/div&gt;
  252. </description><link>http://kramkumarmca.blogspot.com/2013/05/windows-run-command.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-2283465206950395367</guid><pubDate>Wed, 27 Feb 2013 06:49:00 +0000</pubDate><atom:updated>2013-02-27T12:19:10.408+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>How do we find the size of a rich text field in Lotus Notes?</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  253. I am facing an issue, Its peculiar but still IBM is not fixed this issue,&lt;br /&gt;
  254. &lt;br /&gt;
  255. My database is very old. It is created on 1998. Now my database&#39;s version is 6.5.1. So my case everything has its own limit. After a long time, I seen like my db usage is 98% after the completion of compacting. So whenever my document exceeds 32K it can be old or new, the document became spam. Like we can not access the document. We can not open the document. We can not see the property of the document. I had some agents that will take all the documents one by one. Because of this issue, the agent stopped and thrown the error like &quot;field is too large 32k or view&#39;s column &amp;amp; selection formulas are too large&quot;. I could not find the reason why it is happening.&lt;br /&gt;
  256. &lt;br /&gt;
  257. eg:- If my already existing document has more than 32k of size. I have gone and edited the document. And saved it. The document size exceeds 32k, and it became spam what I mentioned above. If my new document exceeds 32k, I attained the same issue.&lt;br /&gt;
  258. &lt;br /&gt;
  259. I was confused. I tried the following steps.&lt;br /&gt;
  260. &lt;br /&gt;
  261. 1. I changed the Text to Summary for all items. Nothing happened.&lt;br /&gt;
  262. 2. As of Notes&amp;nbsp;constraints, document can have any number of size less than 64GB(about db size). But less than 6 It has some limitation. I guess. Sorry if it is wrong. Number of field should not exceed 3000. So I checked the document size. And tried to reduce that. I deleted contents of the fields and made the document to less than 64K. Same problem came.&lt;br /&gt;
  263. 3. I created a lot of field. The form had thousands of field. So I removed many field. I counted as a child and made it to 1000 exactly including reserve fields. Like $Revisions. &amp;nbsp;- &amp;nbsp;32K error. :(&lt;br /&gt;
  264. 4. I know that the limitation of RTF(Rich Text Field) &amp;nbsp;is 1gb. So I ignored.&lt;br /&gt;
  265. 5. I found the $UpdatedBy field is exceeding 32K of size. So I limited the number of entries for this.&lt;br /&gt;
  266. &lt;br /&gt;
  267. &lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
  268. &lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSllBQjaCBp_VvAQFQHkHh7qBgzxMfBQWt2uw8JmQsL6WzsioRLxXIMXFdtJ1psZ9OEZpzU8my6yIbTStqm8mcr38BwPP8DarUuY3yWGJxZ6Mz6nR6LiJ4X-153w7Hhkkqqop5o8aQaaok/s1600/DBProperty.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSllBQjaCBp_VvAQFQHkHh7qBgzxMfBQWt2uw8JmQsL6WzsioRLxXIMXFdtJ1psZ9OEZpzU8my6yIbTStqm8mcr38BwPP8DarUuY3yWGJxZ6Mz6nR6LiJ4X-153w7Hhkkqqop5o8aQaaok/s320/DBProperty.jpg&quot; width=&quot;260&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
  269. &lt;br /&gt;
  270. &lt;br /&gt;
  271. &lt;br /&gt;
  272. &lt;br /&gt;
  273. Finally, I found that the issue from Rich text field. I deleted the attachments and&amp;nbsp;reduced&amp;nbsp;the document size less than 32k. and saved it. I got satisfied.&lt;br /&gt;
  274. &lt;br /&gt;
  275. So I planned to restrict the document size to the user. I want to avoid the 32K error in future documents. Better I can stop the attachment size should not exceeds 15k. So I want to fetch the size of the RTF. I found the better solution for that. t refers NotesRichTextItem.&lt;br /&gt;
  276. &lt;br /&gt;
  277. &lt;b&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Set t = doc.GetFirstItem(&quot;body&quot;)&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
  278. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim newdoc As NotesDocument&lt;/b&gt;&lt;br /&gt;
  279. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Set newdoc = db.CreateDocument()&lt;/b&gt;&lt;br /&gt;
  280. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Call t.Copyitemtodocument(newdoc, &quot;reasonType&quot;)&lt;/b&gt;&lt;br /&gt;
  281. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Msgbox newdoc.Size&lt;/b&gt;&lt;br /&gt;
  282. &lt;br /&gt;
  283. Also I can count the current document size. One funny thing is, our Notes rich text field contents like copy and pate images not an attachments can not be taken without saving the document.&lt;br /&gt;
  284. &lt;br /&gt;
  285. &lt;br /&gt;
  286. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim ws As New NotesUIWorkspace&lt;/b&gt;&lt;br /&gt;
  287. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim uidoc As NotesUIDocument&lt;/b&gt;&lt;br /&gt;
  288. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Set uidoc = ws.CurrentDocument&lt;/b&gt;&lt;br /&gt;
  289. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim session As New NotesSession&lt;/b&gt;&lt;br /&gt;
  290. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim db As NotesDatabase&lt;/b&gt;&lt;br /&gt;
  291. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim doc As NotesDocument&lt;/b&gt;&lt;br /&gt;
  292. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Dim t As Variant&lt;/b&gt;&lt;br /&gt;
  293. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Call uidoc.FieldSetText(&quot;SaveOptions&quot;,&quot;0&quot;)&lt;/b&gt;&lt;br /&gt;
  294. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Call uidoc.Save()&lt;/b&gt;&lt;br /&gt;
  295. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;uidoc.Refresh&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
  296. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Set db = session.CurrentDatabase&lt;/b&gt;&lt;br /&gt;
  297. &lt;b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Set doc = uidoc.Document&lt;/b&gt;&lt;br /&gt;
  298. &lt;b&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; msgbox doc.size&lt;/b&gt;&lt;br /&gt;
  299. &lt;b&gt;&lt;br /&gt;&lt;/b&gt;
  300. But my question to IBM, Why the hell this much big issue can not be solved?&lt;br /&gt;
  301. &lt;br /&gt;
  302. Once the 32K&amp;nbsp;error&amp;nbsp;document has been created then we have to delete the replica copy and take a new replica copy from the source server. This is the only solution for deleting the 32K error documents. You can not delete these document manually.&lt;br /&gt;
  303. &lt;/div&gt;
  304. </description><link>http://kramkumarmca.blogspot.com/2013/02/how-do-we-find-size-of-rich-text-field.html</link><author>noreply@blogger.com (Ramkumar)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSllBQjaCBp_VvAQFQHkHh7qBgzxMfBQWt2uw8JmQsL6WzsioRLxXIMXFdtJ1psZ9OEZpzU8my6yIbTStqm8mcr38BwPP8DarUuY3yWGJxZ6Mz6nR6LiJ4X-153w7Hhkkqqop5o8aQaaok/s72-c/DBProperty.jpg" height="72" width="72"/><thr:total>4</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-1202077962607547522</guid><pubDate>Thu, 10 Jan 2013 06:21:00 +0000</pubDate><atom:updated>2013-01-10T11:52:55.369+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><category domain="http://www.blogger.com/atom/ns#">VB Script</category><title>Get Image from Excel- VB Script</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  305. I was trying to get the picture from excel and trying to save it in my local HD. But unfortunately I did not aware of some Excel Sheet methods. I googled. Whatever I tried finally I can put the picture into excel. But I did not find the way to take the picture. So&amp;nbsp; I copied and pasted the 100&#39;s of images from my Excel sheet. &lt;br /&gt;
  306. &lt;br /&gt;
  307. After a day later, I have fresh mind. I tried to find a easy way. Finally I got the easiest way. I found the function.&lt;br /&gt;
  308. &lt;br /&gt;
  309. Lotus Script:-&lt;br /&gt;
  310. &lt;br /&gt;
  311. &lt;blockquote class=&quot;tr_bq&quot;&gt;
  312. Set xlApp = CreateObject(&quot;Excel.Application&quot;)&lt;br /&gt;
  313. xlApp.Visible = True &lt;br /&gt;
  314. Set xlwb=xlApp.Workbooks.Open(&quot;File Path&quot;)&lt;br /&gt;
  315. Set xlsheet =xlwb.Worksheets(1)&amp;nbsp;&amp;nbsp; Call xlSheet.Shapes(0).copy()&lt;/blockquote&gt;
  316. &amp;nbsp; &amp;nbsp; VB Script :- &lt;br /&gt;
  317. &lt;br /&gt;
  318. &lt;blockquote class=&quot;tr_bq&quot;&gt;
  319. appExcel = New Excel.Application&lt;br /&gt;
  320. xlsBook = appExcel.Workbooks.Open(&quot;File Path&quot;)&lt;br /&gt;
  321. xlsSheet = xlsBook.Worksheets(&quot;Sheet1&quot;)&lt;br /&gt;
  322. Call xlSheet.Shapes(0).copy()&lt;/blockquote&gt;
  323. You can get all the images by using for all or far each condition.&lt;/div&gt;
  324. </description><link>http://kramkumarmca.blogspot.com/2013/01/get-image-from-excel-vb-script.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-2606719399145954790</guid><pubDate>Mon, 03 Dec 2012 05:36:00 +0000</pubDate><atom:updated>2012-12-03T11:06:59.004+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">javascript</category><category domain="http://www.blogger.com/atom/ns#">JSF</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>JSF in Xpages</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  325. We can handle the servlet objects in xpages very effectively. &lt;br /&gt;
  326. &lt;br /&gt;
  327. In xpages, JSF&#39;s facesContext is having the capablity to do this action. Actually this is fetching the CGI variables from server.&lt;br /&gt;
  328. &lt;br /&gt;
  329. Long back I had one assignment, that time I used php for getting the CGI variables from server. I was not aware of this facesConetext at that time. But now I came to know that Xpages have that capablity. Please follow the commands. It should useful for you.&lt;br /&gt;
  330. &lt;br /&gt;
  331. facesContext.getExternalContext().getRequest().getAuthType();&lt;br /&gt;
  332. &lt;br /&gt;
  333. &lt;br /&gt;
  334. facesContext.getExternalContext().getRequest().getContentLength();&lt;br /&gt;
  335. &lt;br /&gt;
  336. facesContext.getExternalContext().getRequest().getContentType();&lt;br /&gt;
  337. &lt;br /&gt;
  338. facesContext.getExternalContext().getRequest().getContextPath();&lt;br /&gt;
  339. &lt;br /&gt;
  340. facesContext.getExternalContext().getRequest().isSecure() ? &quot;ON&quot; : &quot;OFF&quot;;&lt;br /&gt;
  341. &lt;br /&gt;
  342. facesContext.getExternalContext().getRequest().getPathInfo();&lt;br /&gt;
  343. &lt;br /&gt;
  344. facesContext.getExternalContext().getRequest().getPathTranslated();&lt;br /&gt;
  345. &lt;br /&gt;
  346. facesContext.getExternalContext().getRequest().getQueryString();&lt;br /&gt;
  347. &lt;br /&gt;
  348. facesContext.getExternalContext().getRequest().getRemoteAddr();&lt;br /&gt;
  349. &lt;br /&gt;
  350. facesContext.getExternalContext().getRequest().getRemoteHost();&lt;br /&gt;
  351. &lt;br /&gt;
  352. facesContext.getExternalContext().getRequest().getRemoteUser();&lt;br /&gt;
  353. &lt;br /&gt;
  354. facesContext.getExternalContext().getRequest().getMethod();&lt;br /&gt;
  355. &lt;br /&gt;
  356. facesContext.getExternalContext().getRequest().getScheme();&lt;br /&gt;
  357. &lt;br /&gt;
  358. facesContext.getExternalContext().getRequest().getRequestURI();&lt;br /&gt;
  359. &lt;br /&gt;
  360. facesContext.getExternalContext().getRequest().getServletPath();&lt;br /&gt;
  361. &lt;br /&gt;
  362. facesContext.getExternalContext().getRequest().getServerName();&lt;br /&gt;
  363. &lt;br /&gt;
  364. facesContext.getExternalContext().getRequest().getServerPort();&lt;br /&gt;
  365. &lt;br /&gt;
  366. facesContext.getExternalContext().getRequest().getProtocol();&lt;br /&gt;
  367. &lt;br /&gt;
  368. facesContext.getExternalContext().getContext().getServerInfo();&lt;br /&gt;
  369. &lt;br /&gt;
  370. facesContext.getExternalContext().getHeader(&quot;Cooike&quot;)&lt;br /&gt;
  371. facesContext.getExternalContext().getHeader(&quot;Host&quot;)&lt;br /&gt;
  372. facesContext.getExternalContext().getHeader(&quot;Referer&quot;)&lt;br /&gt;
  373. &lt;br /&gt;
  374. We can find this in our discussion8.ntf.&lt;/div&gt;
  375. </description><link>http://kramkumarmca.blogspot.com/2012/12/jsf-in-xpages.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-4655543980199345845</guid><pubDate>Wed, 28 Nov 2012 03:19:00 +0000</pubDate><atom:updated>2012-11-28T08:49:47.861+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>you can only cut or copy a maximum of 2335 documents</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  376. I am very happy to come back again to maintain my blog.&lt;br /&gt;
  377. &lt;br /&gt;
  378. Quick Solu :- IBM Defined Error. For W32, you can not copy more than 2335 documents.&lt;br /&gt;
  379. &lt;br /&gt;
  380. Today morning I was wondering about this issue. I just wanted to copy and paste the 5000 documents from one server to my local database for checking one agent.&lt;br /&gt;
  381. &lt;br /&gt;
  382. But while copying the documents, I was getting the mentioned error.&lt;br /&gt;
  383. &lt;br /&gt;
  384. &lt;b&gt;&quot;you can only cut or copy a maximum of 2335 documents&quot;&lt;/b&gt;&lt;br /&gt;
  385. &lt;b&gt;&lt;br /&gt;&lt;/b&gt;
  386. I thought that it is the user defined error. I checked all the design elements. But I did not get any solution. Finally I found a site that gives more good things and limitations about Lotus Notes.&lt;br /&gt;
  387. &lt;br /&gt;
  388. This is the Limitation for W32 OS. if you are having 64 bit then you can copy or cut documents as much you want. Because the clip board size will become very large. So the IBM restricted this copying things.&lt;br /&gt;
  389. &lt;br /&gt;
  390. Please visit this, &lt;a href=&quot;http://www.geniisoft.com/showcase.nsf/DominoLimitsOld&quot; target=&quot;_blank&quot;&gt;Really It is coooolllll&lt;/a&gt;&lt;br /&gt;
  391. &lt;br /&gt;
  392. &lt;br /&gt;
  393. &lt;div style=&quot;background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; padding: 0px;&quot;&gt;
  394. &lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;This is&amp;nbsp;&lt;/span&gt;&lt;i&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;not&lt;/span&gt;&lt;/i&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;&amp;nbsp;official documentation. It is what you can expect from ND6.5x/7.x/8.x/8.5x by way of limitations, if you don&#39;t know better. If you do know better, we&#39;d like to! Some limits are still guesses or experienced but not proven. Known questionable entries have a question mark (?) beside them.&lt;/span&gt;&lt;/div&gt;
  395. &lt;div style=&quot;background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; padding: 0px;&quot;&gt;
  396. &lt;/div&gt;
  397. &lt;table border=&quot;1&quot; style=&quot;background-color: white; border-collapse: collapse; color: black; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; text-align: start; width: 100%px;&quot;&gt;&lt;tbody&gt;
  398. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana;&quot;&gt;Limit&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana;&quot;&gt;ND6/6.5&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana;&quot;&gt;ND7&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana;&quot;&gt;ND8/8.5&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  399. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of a database?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64 GB (gigabyte) or the OS file system&#39;s limit (2 GB on some older UNIX platforms).&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;It was previously reported that this could exceed 64 GB on Windows systems, but technote&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www-1.ibm.com/support/docview.wss?rs=0&amp;amp;q1=maximum+size+domino&amp;amp;uid=swg21093509&amp;amp;loc=en_US&amp;amp;cs=utf-8&amp;amp;cc=us&amp;amp;lang=en&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_blank&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;1093509&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;states that this is not true, and readers have confirmed that 64 GB is a hard limit.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;According to technote&lt;/span&gt;&lt;a href=&quot;http://www-1.ibm.com/support/docview.wss?uid=swg21113005&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_blank&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;1113005&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;, there are some serious problems with &amp;gt;2GB size on Macintosh client.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64 GB (gigabyte) or the OS file system&#39;s limit (2 GB on some older UNIX platforms).&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;It was previously reported that this could exceed 64 GB on Windows systems, but technote&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www-1.ibm.com/support/docview.wss?rs=0&amp;amp;q1=maximum+size+domino&amp;amp;uid=swg21093509&amp;amp;loc=en_US&amp;amp;cs=utf-8&amp;amp;cc=us&amp;amp;lang=en&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_blank&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;1093509&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;states that this is not true, and readers have confirmed that 64 GB is a hard limit.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;See note under ND6/6.5 about Macintosh limit of 2GB. Note sure if this is a problem for ND7 or not&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64 GB (gigabyte) or the OS file system&#39;s limit (2 GB on some older UNIX platforms).&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;It was previously reported that this could exceed 64 GB on Windows systems, but technote&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://www.ibm.com/support/docview.wss?uid=swg21093509&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_blank&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;1093509&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;states that this is not true, and readers have confirmed that 64 GB is a hard limit.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;See note under ND6/6.5 about Macintosh limit of 2GB. Note sure if this is a problem for ND8/8.5 or not&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Ref: #1093509&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  400. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of plain text fields?&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(e.g., group Members field?)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15KB per (summary) text field;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB per (non-summary) text field;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;30KB of fields per document (storage); 15KB displayed in a view&#39;s column&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15KB per (summary) text field;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB per (non-summary) text field;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;30KB of fields per document (storage); 15KB displayed in a view&#39;s column&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15KB per (summary) text field;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB per (non-summary) text field;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;30KB of fields per document (storage); 15KB displayed in a view&#39;s column&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  401. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of all summary fields in a document combined?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB of summary data per document&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB of summary data per document&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB of summary data per document&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  402. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of a computed text field?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64,363 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64,363 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64,363 characters&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  403. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of a single paragraph in a&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;rich text field?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB (this is approximately 35k of text, though)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB (this is approximately 35k of text, though)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64KB (this is approximately 35k of text, though)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  404. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of paragraph styles?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64,000 unique paragraph styles in a single document&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64,000 unique paragraph styles in a single document&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64,000 unique paragraph styles in a single document&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  405. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many sublevels in a hierarchical view; how many documents at each level?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;31 levels; 300,000 documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;31 levels; 300,000 documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;31 levels; 300,000 documents&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  406. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of windows you can have open simultaneously?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;limited by memory; 35(?) accessible from keyboard&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;limited by memory; 35(?) accessible from keyboard&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;limited by memory; 35(?) accessible from keyboard&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  407. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many characters are allowed in names for views, forms, and so on?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Database Title: 96&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Filename: limited by OS&#39;s file system&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Field names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;View names: 64&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Folder names: 64&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Form names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Macro names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;ACL entry: 255&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Database Title: 96&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Filename: limited by OS&#39;s file system&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Field names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;View names: 64&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Folder names: 64&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Form names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Macro names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;ACL entry: 255&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Database Title: 96&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Filename: limited by OS&#39;s file system&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Field names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;View names: 64&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Folder names: 64&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Form names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Macro names: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;ACL entry: 255&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  408. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many characters are allowed in various administrative names?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Domain name: 31&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Notes named network: 31&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Organization (O) name: 3 (min) to 64 (max), or 2 (min) if you include Country code&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Organizational unit (OU) name: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Common name (CN): 80&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Server name: 79&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;User name: 79&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Group name: 62&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Country code (C): 2 (or 0 since it is optional)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Port: No maximum &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Source is &quot;Table of Domino naming requirements&quot; from ND6 Admin Help db&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Domain name: 31&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Notes named network: 31&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Organization (O) name: 3 (min) to 64 (max), or 2 (min) if you include Country code&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Organizational unit (OU) name: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Common name (CN): 80&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Server name: 79&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;User name: 79&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Group name: 62&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Country code (C): 2 (or 0 since it is optional)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Port: No maximum &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Source is &quot;Table of Domino naming requirements&quot; from ND6 Admin Help db&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Domain name: 31&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Notes named network: 31&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Organization (O) name: 3 (min) to 64 (max), or 2 (min) if you include Country code&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Organizational unit (OU) name: 32&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Common name (CN): 80&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Server name: 79&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;User name: 79&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Group name: 62&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Country code (C): 2 (or 0 since it is optional)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Port: No maximum &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Source is &quot;Table of Domino naming requirements&quot; from ND6 Admin Help db&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  409. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many aliases are allowed for views?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Up to 130 characters for all view aliases per view, including vertical-bar separators (&quot;|&quot;), including the view name&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Up to 130 characters for all view aliases per view, including vertical-bar separators (&quot;|&quot;), including the view name&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Up to 130 characters for all view aliases per view, including vertical-bar separators (&quot;|&quot;), including the view name&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  410. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size for Mail recipient names in a single mail message?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;For individual names and private groups which expand locally, 15KB; for public groups which expand on a server, 2MB of recipient names (based on fully qualified names, for example, Les Kaplan @ Marketing).&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;For individual names and private groups which expand locally, 15KB; for public groups which expand on a server,&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;5MB&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;&amp;nbsp;of recipient names (based on fully qualified names, for example, Les Kaplan @ Marketing).&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;For individual names and private groups which expand locally, 15KB; for public groups which expand on a server,&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;5MB&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;&amp;nbsp;of recipient names (based on fully qualified names, for example, Les Kaplan @ Marketing).&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  411. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many mail rules in a mail DB?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;100&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;100&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;100&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  412. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of individual reader names/group names in a single document?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2005&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: red; font-family: Verdana; font-size: x-small;&quot;&gt;(This is a reported limit, not a documented limit, and it has not been verified. Supposedly, after this many, no matter the size of the field, the indexer will stop displaying the document in views, and the editor will not save)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2005&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: red; font-family: Verdana; font-size: x-small;&quot;&gt;(This is a reported limit, not a documented limit, and it has not been verified. Supposedly, after this many, no matter the size of the field, the indexer will stop displaying the document in views, and the editor will not save)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2005&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: red; font-family: Verdana; font-size: x-small;&quot;&gt;(This is a reported limit, not a documented limit, and it has not been verified. Supposedly, after this many, no matter the size of the field, the indexer will stop displaying the document in views, and the editor will not save)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  413. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum password length allowed on an ID?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;63 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;63 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;63 characters&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  414. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;fields in a database&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~ 3000 (limited to ~ 64K total length for all field names). You can enable the database property &quot;Allow more fields in database&quot; to get up to 22,893 uniquely-named fields in the database.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~ 3000 (limited to ~ 64K total length for all field names). You can enable the database property &quot;Allow more fields in database&quot; to get up to 22,893 uniquely-named fields in the database.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~ 3000 (limited to ~ 64K total length for all field names). You can enable the database property &quot;Allow more fields in database&quot; to get up to 22,893 uniquely-named fields in the database.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  415. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many fields in a form?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;10MB memory (6MB memory for OS/2)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;10MB memory (6MB memory for OS/2)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;10MB memory (6MB memory for OS/2)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  416. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;columns in one table&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  417. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;rows in one table&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  418. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;nested table depth&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;8 nestings&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;8 nestings&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;8 nestings&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  419. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;min/max width of a table cell set through Designer&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;0.125&quot; (0.318cm) minimum&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;22.75&quot; (57.785cm) maximum&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;0.125&quot; (0.318cm) minimum&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;22.75&quot; (57.785cm) maximum&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;0.125&quot; (0.318cm) minimum&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;22.75&quot; (57.785cm) maximum&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  420. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;min/max width of a table cell set through API&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;0.001&quot; minimum, but less than 0.028 messes with borders&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;22.755&quot; maximum&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;0.001&quot; minimum, but less than 0.028 messes with borders&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;22.755&quot; maximum&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;0.001&quot; minimum, but less than 0.028 messes with borders&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;22.755&quot; maximum&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  421. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;views in a database&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;No limit; however, as the number of views increases, the length of time to display other views also increases&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;No limit; however, as the number of views increases, the length of time to display other views also increases&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;No limit; however, as the number of views increases, the length of time to display other views also increases&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  422. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;forms in a database&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  423. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;columns in a view&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;289 ten-character columns; dependent upon # or characters per column&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;289 ten-character columns; dependent upon # or characters per column&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;289 ten-character columns; dependent upon # or characters per column&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  424. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How wide can a column be (# of inches)?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15KB displayed in a view&#39;s column&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15KB displayed in a view&#39;s column&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15KB displayed in a view&#39;s column&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  425. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the largest view column title allowed?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;80 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;80 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;80 characters&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  426. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the total size of computable simple text fields?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;63K&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;63K&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;63K&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  427. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many paragraphs in a document?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;21,509 (19,004 for OS/2)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;21,509 (19,004 for OS/2)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;21,509 (19,004 for OS/2)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  428. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of a rich text field?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited only by available disk space up to 1GB&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited only by available disk space up to 1GB&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited only by available disk space up to 1GB&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  429. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of inserted page breaks?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  430. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many documents can be imported into a view?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Individual documents: up to 350K;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;from a spreadsheet, 8192 rows;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;5000 separate documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Individual documents: up to 350K;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;from a spreadsheet, 8192 rows;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;5000 separate documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Individual documents: up to 350K;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;from a spreadsheet, 8192 rows;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;5000 separate documents&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  431. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;cascading views in a database&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;200&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;200&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;200&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  432. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many copies of a document can be printed at once?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,535&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,535&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,535&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  433. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum value allowed in &quot;Start page numbers at&quot; field?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,535&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,535&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,535&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  434. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;margin size (in inches)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;46&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;46&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;46&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  435. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;page cropping size (in inches)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;46&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;46&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;46&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  436. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;point size to select/print&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;250&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;250&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;250&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  437. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;maximum number of soft-deleted documents in a database&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32,768&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32,768&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32,768&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  438. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;documents in a view&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Maximum of 128 GB for a view index.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(16 M page of B-tree space, 8kB/page)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Also limited by available disk space (2 GB on some UNIX platforms).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;View containers in R5 databases (ODS 3.1 up) do not have a container size limit. The view size limit is now determined by the maximum number of pages that can be created which is 16,777,214. A page holds 8 KB so that means the maximum size for a view is 137,438,937,088 bytes (128 GB).&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Maximum of 128 GB for a view index.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(16 M page of B-tree space, 8kB/page)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Also limited by available disk space (2 GB on some UNIX platforms).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;View containers in R5 databases (ODS 3.1 up) do not have a container size limit. The view size limit is now determined by the maximum number of pages that can be created which is 16,777,214. A page holds 8 KB so that means the maximum size for a view is 137,438,937,088 bytes (128 GB).&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Maximum of 128 GB for a view index.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(16 M page of B-tree space, 8kB/page)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Also limited by available disk space (2 GB on some UNIX platforms).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;View containers in R5 databases (ODS 3.1 up) do not have a container size limit. The view size limit is now determined by the maximum number of pages that can be created which is 16,777,214. A page holds 8 KB so that means the maximum size for a view is 137,438,937,088 bytes (128 GB).&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  439. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum number of profile documents allowed in a database?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;around 6000-6100 per database: s/w limitation&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;around 6000-6100 per database: s/w limitation&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;around 6000-6100 per database: s/w limitation&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  440. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of documents that can be exported to Tabular Text?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited only by available disk space&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited only by available disk space&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited only by available disk space&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  441. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many levels of responses will display in a view?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;31 levels of response to 1 main document&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;31 levels of response to 1 main document&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;31 levels of response to 1 main document&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  442. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many responses per parent document?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;300,000 documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;300,000 documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;300,000 documents&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  443. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of entries in an Access Control List?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Approx: 950 names&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(ACL size is limited to 32767 bytes)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Approx: 950 names&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(ACL size is limited to 32767 bytes)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Approx: 950 names&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;(ACL size is limited to 32767 bytes)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  444. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of roles in an access control list?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;75 Roles&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;75 Roles&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;75 Roles&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  445. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum length of a role name in an ACL?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;15 characters&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  446. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of ACL groups a user can be member of?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;4096&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;4096&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;4096&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  447. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of groups that can be nested?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;20 levels or up to 64k of group name and person name characters, whichever is lower (~30k of data using @UserNamesList or @UserRoles)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;20 levels or up to 64k of group name and person name characters, whichever is lower (~30k of data using @UserNamesList or @UserRoles)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;20 levels or up to 64k of group name and person name characters, whichever is lower (~30k of data using @UserNamesList or @UserRoles)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  448. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of a single paragraph you can cut or copy to the Clipboard?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited (64K for UNIX)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited (64K for UNIX)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Unlimited (64K for UNIX)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  449. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of documents you can cut or copy to the clipboard?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2335 (Win32)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2335 (Win32)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2335 (Win32)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  450. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of users to have authorized passwords on a multiple password ID?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;8 users&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;8 users&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;8 users&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  451. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum amount of storage that can be used for strings in a LotusScript module?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2 GB or available memory.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2 GB or available memory.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2 GB or available memory.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  452. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum length of an environment variable value?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255 characters&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  453. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum length of a string constant in @function formulas?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 bytes (see note under ND7)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 bytes (&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Andre Guirard&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;&amp;nbsp;correctly pointed out that the previous shown value of 2048 characters was incorrect. Also note, these are LMBCS characters, and so could take as many as 4 bytes for a character, although usually they do not)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 bytes (Andre Guirard correctly pointed out that the previous shown value of 2048 characters was incorrect. Also note, these are LMBCS characters, and so could take as many as 4 bytes for a character, although usually they do not)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  454. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum number of results that can be returned from a full text search&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;4,999&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;4,999&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;4,999&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  455. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the largest URL HTTP will accept?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 (?)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 (?)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 (?)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  456. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the largest rich text field HTTP will update?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~64k?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~64k?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~64k?&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  457. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum size of variable-length strings in a LotusScript module?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2 GB (1 GB of characters) per module, or available memory.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2 GB (1 GB of characters) per module, or available memory.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2 GB (1 GB of characters) per module, or available memory.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  458. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many variable-length strings can be defined in LotusScript?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited by available memory and module definitions. Can be limited by symbol table to 64k of symbol names per module.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited by available memory and module definitions. Can be limited by symbol table to 64k of symbol names per module.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited by available memory and module definitions. Can be limited by symbol table to 64k of symbol names per module.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  459. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum size of fixed-length strings in LotusScript?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64k (this is a BASIC language limitation)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64k (this is a BASIC language limitation)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64k (this is a BASIC language limitation)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  460. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum length of a string literal in LotusScript?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32k (16k characters) (this is a BASIC language limitation)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32k (16k characters) (this is a BASIC language limitation)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32k (16k characters) (this is a BASIC language limitation)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  461. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum line length of a line written by LotusScript Write statement?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255 characters&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255 characters&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  462. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many characters can be in path in MkDir, RmDir, or ChDir statement?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;128. This includes the drive specifier, if any.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;128. This includes the drive specifier, if any.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;128. This includes the drive specifier, if any.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  463. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many items can be in a Print, Write, or Input statement?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;255&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  464. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum recLen in Open statement?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32767&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32767&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;32767&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  465. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many symbols can LotusScript handle?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64k of text in symbol names&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64k of text in symbol names&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;64k of text in symbol names&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  466. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many data elements can be in a LotusScript array?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Determined by memory available for data, and by the storage size of each element of the array, which varies with the array data type. For example, a Long one-dimensional fixed array declared in type scope can have 16,128 elements. (The total storage size available for fixed-size data in module scope is 64K bytes, and a Long element requires 4 bytes for storage.)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Determined by memory available for data, and by the storage size of each element of the array, which varies with the array data type. For example, a Long one-dimensional fixed array declared in type scope can have 16,128 elements. (The total storage size available for fixed-size data in module scope is 64K bytes, and a Long element requires 4 bytes for storage.)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Determined by memory available for data, and by the storage size of each element of the array, which varies with the array data type. For example, a Long one-dimensional fixed array declared in type scope can have 16,128 elements. (The total storage size available for fixed-size data in module scope is 64K bytes, and a Long element requires 4 bytes for storage.)&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  467. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum size of a List in LotusScript?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited by available memory&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited by available memory&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Limited by available memory&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  468. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What&#39;s the maximum size of a LotusScript executable module&#39;s code?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;limited by available memory; 64k of source without LSS include files&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;limited by available memory; 64k of source without LSS include files&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;limited by available memory; 64k of source without LSS include files&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  469. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How many outline entries can an outline have?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~21,000 entries&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~21,000 entries&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~21,000 entries&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  470. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;How long can a remote-console command be, and still display properly in Administrator?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;More than 77 characters (documented as &quot;addressed&quot; in K-Base, but no new maximum value is documented).&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;More than 77 characters (documented as &quot;addressed&quot; in K-Base, but no new maximum value is documented).&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;More than 77 characters (documented as &quot;addressed&quot; in K-Base, but no new maximum value is documented).&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  471. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of documents that can be selected when using the &#39;Archive Selected Documents&#39; option?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;The limit appears to be 2047, according to&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.qtzar.com/blogs/qtzar.nsf/d6plinks/SERR-65YJAP&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_new&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;this link&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;The limit appears to be 2047, according to&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.qtzar.com/blogs/qtzar.nsf/d6plinks/SERR-65YJAP&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_new&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;this link&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;The limit appears to be 2047, according to&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.qtzar.com/blogs/qtzar.nsf/d6plinks/SERR-65YJAP&quot; style=&quot;color: blue; cursor: pointer; font-family: verdana, arial, sans-serif; font-size: 13px;&quot; target=&quot;_new&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;this link&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  472. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Length limit for a macro language string literal&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 bytes&lt;/span&gt;&lt;div style=&quot;padding: 0px;&quot;&gt;
  473. &lt;b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Note&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Strings in formula language are represented internally in the LMBCS character set, which uses one byte for an ASCII character, but may require up to 4 bytes for some non-ASCII characters.&lt;/span&gt;&lt;/div&gt;
  474. &lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 bytes&lt;/span&gt;&lt;div style=&quot;padding: 0px;&quot;&gt;
  475. &lt;b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Note&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Strings in formula language are represented internally in the LMBCS character set, which uses one byte for an ASCII character, but may require up to 4 bytes for some non-ASCII characters.&lt;/span&gt;&lt;/div&gt;
  476. &lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;2048 bytes&lt;/span&gt;&lt;div style=&quot;padding: 0px;&quot;&gt;
  477. &lt;b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Note&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Strings in formula language are represented internally in the LMBCS character set, which uses one byte for an ASCII character, but may require up to 4 bytes for some non-ASCII characters.&lt;/span&gt;&lt;/div&gt;
  478. &lt;/td&gt;&lt;/tr&gt;
  479. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;Maximum Notes API objects when using Java&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~104,800&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;~104,800&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  480. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of characters that can be in an @Prompt keyword list before it cannot be preselected?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;The limit appears to be 127, according to anectdotal evidence in the BP forum&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;The limit appears to be 127, according to anectdotal evidence in the BP forum.&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;The limit appears to be 127, according to anectdotal evidence in the BP forum.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  481. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana; font-size: x-small;&quot;&gt;Productivity Editors (ND8.x)&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana; font-size: x-small;&quot;&gt;Lotus Documents&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana; font-size: x-small;&quot;&gt;Lotus Presentations&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#000000&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;color: yellow; font-family: Verdana; font-size: x-small;&quot;&gt;Lotus Spreadsheets&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  482. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What are the maximum numbers of rows and columns for tables?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;65,536 rows and 256 columns. The limit on rows has been incorrectly reported as 32,000 in some documentation&lt;/span&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  483. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;What is the maximum number of worksheets allowed in a spreadsheet?&lt;/span&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;br /&gt;&lt;span style=&quot;font-family: Verdana; font-size: x-small;&quot;&gt;256 separate worksheets.&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
  484. &lt;tr valign=&quot;top&quot;&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;1&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#E0F1FF&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;td bgcolor=&quot;#FFFFD0&quot; width=&quot;1%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;http://www.geniisoft.com/icons/ecblank.gif&quot; style=&quot;border: 0px;&quot; width=&quot;154&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
  485. &lt;/tbody&gt;&lt;/table&gt;
  486. &lt;br /&gt;
  487. &lt;br /&gt;
  488. &lt;br /&gt;&lt;/div&gt;
  489. </description><link>http://kramkumarmca.blogspot.com/2012/11/you-can-only-cut-or-copy-maximum-of.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-7025423140206184205</guid><pubDate>Mon, 09 Jul 2012 10:15:00 +0000</pubDate><atom:updated>2012-07-09T15:45:57.674+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>Couldn&#39;t get default View id for database in Lotus script</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  490. While saving or sending a mail or AppendItem in Rich Text in Lotus script or @Functions, &lt;br /&gt;
  491. &lt;br /&gt;
  492. The above mentioned error may come, That time do not confuse because of this non meaning error.&lt;br /&gt;
  493. &lt;br /&gt;
  494. This is coming because you are not having default view in your database. Actually this is try to access the default view for doing their process. But in your database, you do not have default view or you do not have the sufficient privilege to access this database.&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/07/couldnt-get-default-view-id-for.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-2726385677768266487</guid><pubDate>Wed, 27 Jun 2012 11:41:00 +0000</pubDate><atom:updated>2012-06-28T08:13:26.797+05:30</atom:updated><title>Render Kit</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  495. There are Five Types render kit:&lt;br /&gt;
  496. &lt;br /&gt;
  497. HTML_BASIC&lt;br /&gt;
  498. HTML_RCP&lt;br /&gt;
  499. HTML_SAMETIME&lt;br /&gt;
  500. HTML_NOTES&lt;br /&gt;
  501. HTML_MOBILE&lt;br /&gt;
  502. &lt;br /&gt;
  503. HTML_BASIC-used on the web&lt;br /&gt;
  504. &lt;br /&gt;
  505. HTML_RCP-used on the notes&lt;br /&gt;
  506. &lt;br /&gt;
  507. using render kit tag i show one label in a browser as a “BROWSER” and&lt;br /&gt;
  508. &lt;br /&gt;
  509. same label in notes as a “NOTES”&lt;br /&gt;
  510. &lt;br /&gt;
  511. Example source code given below. you just put this code between&lt;br /&gt;
  512. &lt;br /&gt;
  513. &amp;lt;xp:view&amp;gt;…………………&amp;lt;/xp:view&amp;gt;&lt;br /&gt;
  514. &lt;br /&gt;
  515. Code:&lt;br /&gt;
  516. &lt;br /&gt;
  517. &amp;lt;xp:label value=&quot;BROWSER&quot; id=&quot;label1&quot;&amp;gt;&lt;br /&gt;
  518. &lt;br /&gt;
  519. &amp;lt;xp:label.HTML_RCP value=&quot;NOTES&quot;/&amp;gt;&lt;br /&gt;
  520. &lt;br /&gt;
  521. &amp;lt;/xp:label&amp;gt;&lt;br /&gt;
  522. for well know about Render kit see following link&lt;br /&gt;
  523. http://www-10.lotus.com/ldd/ddwiki.nsf/dx/XPages_configuration_file_format_page_5&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/06/reder-kit.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-2419930334374718269</guid><pubDate>Thu, 21 Jun 2012 05:57:00 +0000</pubDate><atom:updated>2012-06-27T15:13:29.512+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>View entry not found in view index on Lotusscript error</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  524. Hi Today I had a simple problem but it wasted my little more time. Actually I am checking the documents one by one from a view.&lt;br /&gt;
  525. &lt;br /&gt;
  526. See the code below:- [Code has been modified because of public]&lt;br /&gt;
  527. &lt;br /&gt;
  528. Dim session As New NotesSession&lt;br /&gt;
  529. &amp;nbsp;&amp;nbsp;&amp;nbsp; Dim db As NotesDatabase&lt;br /&gt;
  530. &amp;nbsp;&amp;nbsp;&amp;nbsp; Dim view As notesview&lt;br /&gt;
  531. &amp;nbsp;&amp;nbsp;&amp;nbsp; Dim doc As notesDocument&lt;br /&gt;
  532. &amp;nbsp;&amp;nbsp;&amp;nbsp; Set db=session.CurrentDatabase&lt;br /&gt;
  533. &amp;nbsp;&amp;nbsp;&amp;nbsp; Set view=db.GetView(&quot;vwFirst&quot;)&lt;br /&gt;
  534. &amp;nbsp;&amp;nbsp;&amp;nbsp; Set doc=view.GetFirstDocument&lt;br /&gt;
  535. &amp;nbsp;&amp;nbsp;&amp;nbsp; While Not doc Is Nothing&lt;br /&gt;
  536. &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; If doc.field_Name(0)=&quot;User : 99999&quot; Then&lt;br /&gt;
  537. &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Msgbox &quot;Test&quot;&lt;br /&gt;
  538. &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; doc.field_Name=&quot;User : 99999&quot;&lt;br /&gt;
  539. &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Call doc.Save(True,False)&lt;br /&gt;
  540. &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br /&gt;
  541. &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Set doc=view.GetNextDocument(doc)&lt;br /&gt;
  542. &amp;nbsp;&amp;nbsp;&amp;nbsp; Wend&lt;br /&gt;
  543. &lt;br /&gt;
  544. While executing the code, Whenever the document is saving, there I am getting the view entry not found error. After some heading with this code and view. I got a idea that why not the document collection have been affected after the document is being saved. Yes that is the solution. After saving the document the view&#39;s document has inter changed depends on their modification date.&lt;br /&gt;
  545. &lt;br /&gt;
  546. Finally the solution is, Please add the view.autoUpdate=false This will solve the problem easily.&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/06/view-entry-not-found-in-view-index-on.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-4534397423537305204</guid><pubDate>Wed, 13 Jun 2012 09:39:00 +0000</pubDate><atom:updated>2012-06-27T16:29:17.035+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>$Revisions - Features</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  547. In our notes replication is a great feature. Because of this we can easily synchronize the data from one to another. But we used to face some problem while replicating.&lt;br /&gt;
  548. &lt;br /&gt;
  549. This is not a problem.&lt;br /&gt;
  550. &lt;br /&gt;
  551. I had faced one situation that,I need to get the visitor&#39;s count of the document.&lt;br /&gt;
  552. Don&#39;t say see the updatedBy field. That is unique(authors). So here we can not get the count. Finally I got a simple idea on revision field after discussing with my friend Mahe, Then I researched with that field, &lt;a href=&quot;http://www-10.lotus.com/ldd/dominowiki.nsf/dx/limit-size-of-updatedby-and-revisions-fields&quot; target=&quot;_blank&quot;&gt;Follow this&lt;/a&gt;&lt;br /&gt;
  553. &lt;br /&gt;
  554. The Revision field has&amp;nbsp; sequence number. But the document should be re-saved then only it revises the document.&lt;br /&gt;
  555. &lt;br /&gt;
  556. But I do not know that how to get the sequence number from that field by programmatic-ally. I am searching... &lt;a href=&quot;http://stackoverflow.com/questions/11009441/how-to-get-the-sequence-number-of-revisions-field&quot; target=&quot;_blank&quot;&gt;http://stackoverflow.com/questions/11009441/how-to-get-the-sequence-number-of-revisions-field&lt;/a&gt;&lt;br /&gt;
  557. &lt;br /&gt;
  558. &lt;br /&gt;
  559. &lt;br /&gt;
  560. &lt;br /&gt;
  561. &lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/06/revisions-features.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-1002316395083244433</guid><pubDate>Thu, 07 Jun 2012 10:40:00 +0000</pubDate><atom:updated>2012-06-27T16:32:22.932+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>Sequence number generation in Replication copies</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  562. Very very funny, familiared and &lt;b&gt;important &lt;/b&gt;issue. Mostly everyone has faced this issue. The issue is that, I am having the employee database on main server. And I have a lot of replica copies in different location. I need a exact sequence unique long needed. If replication copy&#39;s same document is modified in more than one different location then replication conflict occurs. And also the sequence number will get spoiled.&amp;nbsp; And some people used to say that this is easy but now only I have&amp;nbsp;familiared with this. Only the people who have already faced this issue, will tell that&amp;nbsp;it can not be solved. We have to manually resolve this.&lt;br /&gt;
  563. &lt;br /&gt;
  564. Yes exactly, Project should be done with the customer requirements. No customer does like the rework.&lt;br /&gt;
  565. &lt;br /&gt;
  566. Okay I come to point...&lt;br /&gt;
  567. &lt;br /&gt;
  568. Before heading this issue we need to know about the &quot;Replication conflict&quot;, &quot;Replication&quot;, &quot;Document Locking&quot;, &quot;Developer&#39;s Responsibility [kidding]&quot; :)&lt;br /&gt;
  569. &lt;br /&gt;
  570. We have a lot of tool for handling this. But we are&amp;nbsp; third party for customer. If we purchased tool from third party then we have a third party for our tool. so sixth party for customer :) . No customer needs that relationship. And also the license period and other things may conflict with our agreement.&lt;br /&gt;
  571. &lt;br /&gt;
  572. Again we come with document locking. We need to enable the Allow document locking in database property. And we have to enable the master server in ACL of the database.These are features of document locking., &lt;br /&gt;
  573. &lt;br /&gt;
  574. if the document is not locked, the method places the lock and returns True&lt;br /&gt;
  575. if the document is locked and the current user is one of the lock holders, the method returns True&lt;br /&gt;
  576. if the document is locked and the current user is not one of the lock holders, the method returns False&lt;br /&gt;
  577. if the document is modified by another user before the lock can be placed, the method raises an error&lt;br /&gt;
  578. &lt;br /&gt;
  579. &lt;br /&gt;
  580. But the user does not want the hard reworking. So I analyze for the solution on this issue.&lt;br /&gt;
  581. &lt;br /&gt;
  582. But still I have not clear idea about this. But complex way is there, That is, we have to check all the replication servers and while user tries to edit the document for new document or sequence number creation we do not do it in replication server. Try to write a schedule agent for this.That will be the great idea. or Try to make a common sequence number format, Like Date + Location + Number , etc.,&lt;br /&gt;
  583. &lt;br /&gt;
  584. For creating sequence number, funny this is too easy. Once fresher or new notes person needed, then reply me back&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/06/sequence-number-generation-in.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-5712397475141018175</guid><pubDate>Mon, 04 Jun 2012 06:23:00 +0000</pubDate><atom:updated>2012-06-04T11:54:47.536+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>Reserve fields...</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  585. The following link gives the great idea about the reserve field in Lotus notes.&lt;br /&gt;
  586. &lt;br /&gt;
  587. &lt;a href=&quot;http://www.mindwatering.com/supportref.nsf/7e2c847e54ec143785256d2200105769/932ddc4865e29597852567d900830899%21OpenDocument&quot; target=&quot;_blank&quot;&gt;Reserve Fields in Lotus Note&lt;/a&gt;&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/06/reserve-fields.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-6921099447476593294</guid><pubDate>Fri, 27 Apr 2012 07:34:00 +0000</pubDate><atom:updated>2012-04-27T13:04:43.521+05:30</atom:updated><title>website tracking in php</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  588. Yes really php is a efficient and nice user friendly tool for scripting. &lt;br /&gt;
  589. &lt;br /&gt;
  590. I was in a job to track a website. And also word press form is my front- end. The site is in php.&lt;br /&gt;
  591. &lt;br /&gt;
  592. So session variables is not possible to track. Because we can not retrieve the session variable in client side javascript. I have planned to set cookies for all tracked information using php. That is cool. I have written that in javascript. But I am not able to get the IP address in an efficient manner.&lt;br /&gt;
  593. Please view :-&lt;br /&gt;
  594. &lt;a href=&quot;http://kramkumarmca.blogspot.in/2012/04/cookies-javascript-function-altest.html&quot;&gt;http://kramkumarmca.blogspot.in/2012/04/cookies-javascript-function-altest.html&lt;/a&gt;&lt;br /&gt;
  595. &lt;br /&gt;
  596. Here I am tracking my blog info. It is 20% of requirement. In javacsript, referrer makes me fool for some browser. And also there is no direct way to get the IP address of the visitor. We are in need of going some external provider.&lt;br /&gt;
  597. &lt;br /&gt;
  598. So I moved to php. Using the CGI variable,we can easily manipulate the tracking info effectively.&lt;br /&gt;
  599. &lt;br /&gt;
  600. Please view CGI variable in Xpage :- &lt;a href=&quot;http://php.net/manual/en/reserved.variables.php&quot;&gt;http://php.net/manual/en/reserved.variables.php&lt;/a&gt;&lt;br /&gt;
  601. &lt;br /&gt;
  602. Yes really wondered, Job done in right manner. right way. No Issues till now. &lt;br /&gt;
  603. &lt;br /&gt;
  604. &lt;br /&gt;
  605. &lt;br /&gt;
  606. &lt;br /&gt;&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/website-tracking-in-php.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-6003958626971346710</guid><pubDate>Fri, 27 Apr 2012 07:19:00 +0000</pubDate><atom:updated>2012-06-27T16:33:30.495+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">javascript</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>Splitting a string in xpage</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  607. Hi,&lt;br /&gt;
  608. &lt;br /&gt;
  609. Actually I had an issue with splitting the string. But that string can have null character.&lt;br /&gt;
  610. That time I was in server side javascript on Xpage.&lt;br /&gt;
  611. I had used @Explode(&quot;,,test,test123&quot;).length, it should return 4 as of my concern.&lt;br /&gt;
  612. But the above had returned 2. Again I had used split(&quot;,,test,test123&quot;), I thought it would work perfect.&lt;br /&gt;
  613. Again I got cheated by Xpage :).&lt;br /&gt;
  614. So I used the split(&quot;,,test,test123&quot;) in CSJS. I got my thing correct.&lt;br /&gt;
  615. &lt;br /&gt;
  616. Obviously what we have known that the functional behavior is changing, while running the split in Domino server.&lt;br /&gt;
  617. &lt;br /&gt;
  618. Try to use basic javascript in our xpages at CSJS script. Do not use it in SSJS script.&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/splitting-string-in-xpage.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-4810282650917190422</guid><pubDate>Mon, 23 Apr 2012 08:26:00 +0000</pubDate><atom:updated>2012-06-27T16:33:51.676+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">javascript</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>Cookies - Manipulation using javascript</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  619. &lt;h1&gt;
  620. Website Tracking(Lead&#39;s Info.,) cookies - javascript&lt;/h1&gt;
  621. &lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
  622. function alTest()
  623. {
  624.  
  625. // alert(unescape(document.referrer.split(&#39;/&#39;)[2]));
  626. //alert(window.location.href.match(&quot;search&quot;));
  627. //alert(document.referrer)
  628. }
  629.  
  630.  
  631.  
  632. function deleteAllCookie() {
  633.  
  634. var cookies = document.cookie.split(&quot;;&quot;);
  635. for (var i = 0; i &lt; cookies.length; i++)
  636. {
  637. document.cookie = cookies[i]+&#39;=; expires=Thu, 01-Jan-70 00:00:01 GMT;&#39;;
  638. }
  639.  
  640. }
  641.  
  642.  
  643.  
  644. function setCookie(c_name,value,exdays)
  645. {
  646. var exdate=new Date();
  647. exdate.setDate(exdate.getDate() + exdays);
  648. var c_value=escape(value) + ((exdays==null) ? &quot;&quot; : &quot;; expires=&quot;+exdate.toUTCString());
  649. document.cookie=c_name + &quot;=&quot; + c_value;
  650. }
  651.  
  652.  
  653. function setRefHost(c_name,value,exdays)
  654. {
  655. var exdate=new Date();
  656. exdate.setDate(exdate.getDate() + exdays);
  657. var c_value=escape(value) + ((exdays==null) ? &quot;&quot; : &quot;; expires=&quot;+exdate.toUTCString());
  658. document.cookie=c_name + &quot;=&quot; + c_value;
  659. }
  660.  
  661.  
  662.  
  663. function getCookie(c_name)
  664. {
  665. var i,x,y,ARRcookies=document.cookie.split(&quot;;&quot;);
  666. for (i=0;i&lt;ARRcookies.length;i++)
  667.  {
  668.  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf(&quot;=&quot;));
  669.  y=ARRcookies[i].substr(ARRcookies[i].indexOf(&quot;=&quot;)+1);
  670.  x=x.replace(/^\s+|\s+$/g,&quot;&quot;);
  671.  if (x==c_name)
  672.    {
  673.    return unescape(y);
  674.    }
  675.  }
  676. }
  677.  
  678.  
  679. function myIP() {
  680.       try{
  681.        if (window.XMLHttpRequest) xmlhttp = new XMLHttpRequest();
  682.        else xmlhttp = new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;);
  683.  
  684.        xmlhttp.open(&quot;GET&quot;, &quot;http://api.hostip.info/get_html.php&quot;, false);
  685.        xmlhttp.send();
  686.  
  687.        hostipInfo = xmlhttp.responseText.split(&quot;\n&quot;);
  688.        return hostipInfo[2]
  689.        }
  690.        catch(e)
  691.        {
  692.         return &quot;IE? Sorry Ajax Error... Please try this in other Browser&quot;;
  693.        }  
  694.  
  695.  
  696. }
  697.  
  698.  
  699.  
  700. function setReferrer()
  701. {
  702.  
  703.   if(document.referrer==&quot;&quot;)
  704. {
  705.             setCookie(&quot;Referrer&quot;,&quot;Direct Lead&quot;,1);
  706.   setCookie(&quot;ReferrerHost&quot;,&quot;Unknown Host&quot;,1);
  707.   setCookie(&quot;SearchKey&quot;,&quot;Not Found&quot;,1);
  708.   setCookie(&quot;ReferrerType&quot;,&quot;Not yet Get&quot;,1);
  709.                 document.getElementById(&quot;referrer&quot;).value=getCookie(&quot;Referrer&quot;);
  710.                 if((getCookie(&quot;LandingPage&quot;) == &quot;&quot;) || (getCookie(&quot;LandingPage&quot;) == null ) || (getCookie(&quot;LandingPage&quot;) == undefined))
  711.                 {
  712.                  setCookie(&quot;LandingPage&quot;,window.location.href,1);                
  713.                  document.getElementById(&quot;previous&quot;).value=getCookie(&quot;LandingPage&quot;);
  714.                 }
  715.                 else
  716.                 {
  717. getCookie(&quot;LandingPage&quot;)
  718.                   document.getElementById(&quot;previous&quot;).value=getCookie(&quot;LandingPage&quot;);
  719.                 }
  720.                 document.getElementById(&quot;key&quot;).value=getCookie(&quot;SearchKey&quot;);
  721.                 document.getElementById(&quot;refererDomain&quot;).value=getCookie(&quot;ReferrerHost&quot;);
  722.                var track=getCookie(&quot;TrackedLink&quot;) +&quot;\n&quot;+window.location.href;
  723.  track=track.replace(&quot;undefined&quot;,&quot;&quot;)
  724.  setCookie(&quot;TrackedLink&quot;,track,1)
  725.  
  726.                 document.getElementById(&quot;track&quot;).value=getCookie(&quot;TrackedLink&quot;)
  727.                 var ipAdd=myIP()
  728.   setCookie(&quot;IP-Add&quot;,ipAdd,1);
  729.                
  730.                 document.getElementById(&quot;IP&quot;).value=getCookie(&quot;IP-Add&quot;);
  731.              
  732.  
  733. }
  734. else
  735. {
  736.                 var reff=document.referrer
  737.   setCookie(&quot;Referrer&quot;,unescape(reff),1);
  738.                 var refHost=unescape(reff.split(&#39;/&#39;)[2])
  739.   setRefHost(&quot;ReferrerHost&quot;,refHost,1);
  740.   var t= findsearchKey(document.referrer);
  741.   setCookie(&quot;SearchKey&quot;,t,1);
  742.   setCookie(&quot;ReferrerType&quot;,&quot;Not yet Get&quot;,1);
  743.                 if((getCookie(&quot;LandingPage&quot;) == &quot;&quot;) || (getCookie(&quot;LandingPage&quot;) == null ) || (getCookie(&quot;LandingPage&quot;) == undefined))
  744.                 {
  745.                  setCookie(&quot;LandingPage&quot;,window.location.href,1);                
  746.                  document.getElementById(&quot;previous&quot;).value=getCookie(&quot;LandingPage&quot;);
  747.                 }
  748.                 else
  749.                 {
  750.                   document.getElementById(&quot;previous&quot;).value=getCookie(&quot;LandingPage&quot;);
  751.                 }
  752.                 document.getElementById(&quot;referrer&quot;).value=getCookie(&quot;Referrer&quot;);
  753.                 document.getElementById(&quot;key&quot;).value=getCookie(&quot;SearchKey&quot;);
  754.                 document.getElementById(&quot;refererDomain&quot;).value=getCookie(&quot;ReferrerHost&quot;);
  755.                 var track=getCookie(&quot;TrackedLink&quot;) +&quot;\n&quot;+window.location.href;
  756.  track=track.replace(&quot;undefined&quot;,&quot;&quot;)
  757.  setCookie(&quot;TrackedLink&quot;,track,1)
  758.  
  759.                 document.getElementById(&quot;track&quot;).value=getCookie(&quot;TrackedLink&quot;)
  760.                 var ipAdd=myIP()
  761.   setCookie(&quot;IP-Add&quot;,ipAdd,1);
  762.                
  763.                 document.getElementById(&quot;IP&quot;).value=getCookie(&quot;IP-Add&quot;);
  764.              
  765. }
  766.  
  767. }
  768.  
  769. function findsearchKey(ref)
  770. {
  771. if(ref.indexOf(&quot;q=&quot;) != -1)
  772. {
  773.   var sub=(ref.substring(ref.indexOf(&quot;q=&quot;)+2,ref.indexOf(&quot;q=&quot;)+20))
  774.   if(sub.indexOf(&quot;&amp;&quot;) != -1)
  775.   {
  776.   sub=sub.substring(0,sub.indexOf(&quot;&amp;&quot;))
  777.                        return sub.replace(/\+/g, &quot; &quot;);
  778.   }
  779.                 else
  780.                 {
  781.                        return sub.replace(/\+/g, &quot; &quot;);
  782.                 }
  783.  
  784.  
  785. }
  786. else
  787. {
  788.  return &quot;Not found&quot;
  789. }
  790. }
  791. &lt;/script&gt;&lt;br /&gt;
  792. &lt;form&gt;
  793. &lt;table&gt;&lt;tbody&gt;
  794. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Referer URL:&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;input id=&quot;referrer&quot; maxlength=&quot;200&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
  795. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;IP ADDRESS :&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;input id=&quot;IP&quot; maxlength=&quot;80&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
  796. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Referrer&#39;s Domain :&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;input id=&quot;refererDomain&quot; maxlength=&quot;80&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
  797. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Search Key :&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;input id=&quot;key&quot; maxlength=&quot;80&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
  798. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Landing Page :&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;input id=&quot;previous&quot; maxlength=&quot;80&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
  799. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Tracking Address :&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;textarea id=&quot;track&quot; maxlength=&quot;80&quot; type=&quot;text&quot;&gt;&lt;/textarea&gt;&lt;/td&gt;&lt;/tr&gt;
  800. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Alert Button :&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;button onclick=&quot;setReferrer()&quot; type=&quot;submit&quot;&gt;Click Me!&lt;/button&gt;&lt;/td&gt;&lt;/tr&gt;
  801. &lt;tr&gt;&lt;td align=&quot;right&quot; nowrap=&quot;nowrap&quot; style=&quot;font-family: sans-serif; font-size: 12px; font-weight: bold;&quot; width=&quot;25%&quot;&gt;Delete Cookies:&lt;/td&gt;&lt;td width=&quot;75%&quot;&gt;&lt;button onmouseover=&quot;deleteAllCookie()&quot; type=&quot;submit&quot;&gt;Delete All Cookie...&lt;/button&gt;&lt;/td&gt;&lt;/tr&gt;
  802. &lt;/tbody&gt;&lt;/table&gt;
  803. &lt;/form&gt;
  804. &lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/cookies-javascript-function-altest.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-5634666954114245679</guid><pubDate>Tue, 17 Apr 2012 08:37:00 +0000</pubDate><atom:updated>2012-06-27T16:35:13.545+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>Get all the Design Elements - NotesNoteCollection</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  805. Everyone had this experience on their first exercise that getting the design element names.&lt;br /&gt;
  806. &lt;br /&gt;
  807. We have two different ways.,&lt;br /&gt;
  808. &lt;br /&gt;
  809. 1. &lt;a href=&quot;http://kramkumarmca.blogspot.in/2011/12/to-view-design-elements-in-our-own-view.html&quot; style=&quot;color: red; font-weight: bold;&quot; target=&quot;_blank&quot;&gt;STEP- 1 : For getting the design elements name in our own view.&lt;/a&gt;&lt;br /&gt;
  810. &lt;br /&gt;
  811. 2. We can get it from NotesNoteCollection. Actually I tried to get the DXL (DOM object) from one of my non accessed database. Their I remembered the thing which I suffered in my past. Use of NotesNoteCollection is easy.&lt;br /&gt;
  812. &lt;br /&gt;
  813. Please follow this code:-&lt;br /&gt;
  814. &lt;br /&gt;
  815. &lt;b&gt;&lt;br /&gt;On Error GoTo e&lt;br /&gt;Dim session As New NotesSession&lt;br /&gt;Dim db As NotesDatabase&lt;br /&gt;Set db = session.CurrentDatabase&lt;br /&gt;Dim stream As NotesStream&lt;br /&gt;Set stream = session.CreateStream&lt;br /&gt;Dim filename As String&lt;br /&gt;filename$ = &quot;D:\dxl\&quot; &amp;amp; Left(db.FileName, Len(db.FileName) - 3) &amp;amp; &quot;dxl&quot;&lt;br /&gt;If Not stream.Open(filename$) Then&lt;br /&gt;Messagebox &quot;Cannot open &quot; &amp;amp; filename$,, &quot;Error&quot;&lt;br /&gt;Exit Sub&lt;br /&gt;End If&lt;br /&gt;Call stream.Truncate&lt;br /&gt;&lt;br /&gt;REM Create note collection for current database&lt;br /&gt;Dim nc As NotesNoteCollection&lt;br /&gt;Set nc = db.CreateNoteCollection(False)&lt;br /&gt;&#39;Call nc.SelectAllDesignElements(True)&lt;br /&gt;nc.SelectForms=true&lt;br /&gt;Call nc.BuildCollection&lt;br /&gt;Dim nid As String&lt;br /&gt;nid=nc.Getfirstnoteid()&lt;br /&gt;MsgBox nc.count&lt;br /&gt;For i=1 To nc.Count&lt;br /&gt;Dim doc As NotesDocument&lt;br /&gt;nextid=nc.Getnextnoteid(nid)&lt;br /&gt;Set doc=db.Getdocumentbyid(nid)&lt;br /&gt;MsgBox doc.Getitemvalue(&quot;$Title&quot;)(0)&lt;br /&gt;nid=nextid&lt;br /&gt;Next&lt;br /&gt;REM Export note collection as DXL&lt;br /&gt;Dim exporter As NotesDXLExporter&lt;br /&gt;Set exporter = session.CreateDXLExporter(nc, stream)&lt;br /&gt;Call exporter.Process&lt;br /&gt;MsgBox &quot;Finished :)&quot; &lt;br /&gt;Exit Sub&lt;br /&gt;e:&lt;br /&gt;MsgBox &quot;Error : &quot; &amp;amp;Error &amp;amp;Erl() &amp;amp;&quot; -- &quot; &amp;amp;Err&lt;br /&gt;Exit sub&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
  816. &lt;br /&gt;
  817. The above is used to get the names of our forms in current database,&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/get-all-design-elements.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-4000812704021822602</guid><pubDate>Mon, 16 Apr 2012 09:01:00 +0000</pubDate><atom:updated>2012-04-16T14:31:57.951+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Domino</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>400- Bad Request Xpages</title><description>I was in free. So I thought to give the user name and password in url to my Domino server.&lt;br /&gt;
  818. &lt;br /&gt;
  819. I thought domino is terrifically have the security. So searched any way is there.&lt;br /&gt;
  820. &lt;br /&gt;
  821. Finally I have traced the cookies and gave the user name and password on url.&lt;br /&gt;
  822. &lt;br /&gt;
  823. But I got the following Error.&lt;br /&gt;
  824. &lt;br /&gt;
  825. &lt;div&gt;&lt;b&gt;Http Status Code: 400&lt;br /&gt;
  826. &lt;br /&gt;
  827. Reason: Http request contains a malformed escape sequence&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
  828. I searched the solution for rectify or overcome this...&lt;br /&gt;
  829. &lt;br /&gt;
  830. Yes We can if we set &lt;br /&gt;
  831. &lt;br /&gt;
  832. &lt;b style=&quot;font-size:15pt; color:red&quot;&gt;HTTPAllowDecodedUrlPercent=1&lt;/b&gt;&lt;br /&gt;
  833. &lt;br /&gt;
  834. in Notes.ini on your corresponding server. This will make the funny thing that I have mentioned above, :)</description><link>http://kramkumarmca.blogspot.com/2012/04/400-bad-request-xpages.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-2449953834468780275</guid><pubDate>Mon, 16 Apr 2012 05:51:00 +0000</pubDate><atom:updated>2012-06-27T16:36:36.870+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Domino</category><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>Message box in server using Lotus script</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  835. Some of the time we need the prompt while running an agent in server.&lt;br /&gt;
  836. &lt;br /&gt;
  837. But everyone easily tell that it is not possible on Lotus script.&lt;br /&gt;
  838. &lt;br /&gt;
  839. But we can. We have print statement in lotus script. It is very powerful statement and also here we can use javascript code itself. The following will throw the message box while running an agent in server.&lt;br /&gt;
  840. &lt;br /&gt;
  841. Code:-&lt;br /&gt;
  842. &lt;b&gt;Dim alertMsg As String&lt;br /&gt;Print {&amp;lt;script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&amp;gt;} &lt;br /&gt;Print {alert(&#39;Ramkumar&#39;)}&lt;br /&gt;print {&amp;lt;/script&amp;gt;} &lt;i&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/message-box-in-server-using-lotus.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-7196018882007555763</guid><pubDate>Mon, 16 Apr 2012 05:02:00 +0000</pubDate><atom:updated>2012-06-27T16:37:29.991+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><category domain="http://www.blogger.com/atom/ns#">Web service</category><title>Web service in Lotus script</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  843. Simply we can provide and consume the Web Service using Lotus Script.&lt;br /&gt;
  844. &lt;br /&gt;
  845. Step 1:&lt;br /&gt;
  846. Create the web service provider as firstWebservice.&lt;br /&gt;
  847. &lt;br /&gt;
  848. Step 2:&lt;br /&gt;
  849. Write the following class in it.&lt;br /&gt;
  850. &lt;br /&gt;
  851. class first&lt;br /&gt;
  852. &lt;br /&gt;
  853. Function messgae&lt;br /&gt;
  854. message=&quot;Hai...&quot;&lt;br /&gt;
  855. End Function&lt;br /&gt;
  856. &lt;br /&gt;
  857. End class&lt;br /&gt;
  858. &lt;br /&gt;
  859. Step 3:&lt;br /&gt;
  860. Web service provider property, Do the following...&lt;br /&gt;
  861. &lt;br /&gt;
  862. &lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
  863. &lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJfjViTiCB5uaUZekX1DqmTdzrF1k2XKtFlUMzM_8IH7lO0BYsMbLdsw9_Ua6xeM9bXLzbmKfovzacyczRHhTzobILDblEkPYpQ0h82Odt0w92LUOGcYy9SCAA3RHIq-77TQM77YVSSyDE/s1600/webservice.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;216&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJfjViTiCB5uaUZekX1DqmTdzrF1k2XKtFlUMzM_8IH7lO0BYsMbLdsw9_Ua6xeM9bXLzbmKfovzacyczRHhTzobILDblEkPYpQ0h82Odt0w92LUOGcYy9SCAA3RHIq-77TQM77YVSSyDE/s320/webservice.JPG&quot; width=&quot;307&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
  864. &lt;br /&gt;
  865. Step 4:&lt;br /&gt;
  866. Create a button at which you want to consume this web service.&lt;br /&gt;
  867. Write the following code in it.&lt;br /&gt;
  868. &lt;br /&gt;
  869. Code:&lt;br /&gt;
  870. &lt;i&gt;&lt;b&gt;&lt;br /&gt;Dim v As Variant&lt;br /&gt;Set Client =CreateObject(&quot;MSSOAP.SoapClient&quot;)&lt;br /&gt;Call Client.mssoapinit (&quot;URL OF DATBASE/Web Service Provider Name?WSDL&quot;)&lt;br /&gt;Msgbox Client.message&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/web-service-in-lotus-script.html</link><author>noreply@blogger.com (Ramkumar)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJfjViTiCB5uaUZekX1DqmTdzrF1k2XKtFlUMzM_8IH7lO0BYsMbLdsw9_Ua6xeM9bXLzbmKfovzacyczRHhTzobILDblEkPYpQ0h82Odt0w92LUOGcYy9SCAA3RHIq-77TQM77YVSSyDE/s72-c/webservice.JPG" height="72" width="72"/><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-9204229389774130228</guid><pubDate>Thu, 12 Apr 2012 07:22:00 +0000</pubDate><atom:updated>2012-06-27T16:38:36.050+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><title>calling java script Library from Lotus script</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  871. Hi, Just I have reminded the things when I was as Trainee. &lt;br /&gt;
  872. &lt;br /&gt;
  873. I have tested the javaObject. But now I got an issue with script Library - java.&lt;br /&gt;
  874. &lt;br /&gt;
  875. Each time when I change the Script Library I need to delete the cache.&lt;br /&gt;
  876. &lt;br /&gt;
  877. Step 1: Create Script Library as Name as &quot;Java&quot;&lt;br /&gt;
  878. &lt;br /&gt;
  879. Use the code as follow,&lt;br /&gt;
  880. &lt;br /&gt;
  881. &lt;b&gt;public class Test { &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public int x;&lt;br /&gt;public int add(int a, int b)&lt;br /&gt;{&lt;br /&gt;return a+b+x+100;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public Test(int c)&lt;br /&gt;{&lt;br /&gt;x=c;&lt;br /&gt;}&lt;br /&gt;}&lt;/b&gt;&lt;br /&gt;
  882. &lt;br /&gt;
  883. Step 3: Create a new form and put one button there,&lt;br /&gt;
  884. &lt;br /&gt;
  885. In Button option -&amp;gt; put Uselsx &quot;*javacon&quot; and use &quot;Test&quot;&lt;br /&gt;
  886. &lt;br /&gt;
  887. Step 4: Use the code as follow in that button.,&lt;br /&gt;
  888. &lt;br /&gt;
  889. &lt;b&gt;On Error Goto e&lt;br /&gt;Dim mySession As JavaSession&lt;br /&gt;Dim myClass As JavaClass&lt;br /&gt;Dim myObject As JavaObject&lt;br /&gt;Set mySession = New JavaSession()&lt;br /&gt;&#39; Get Java &quot;java.lang.Integer&quot; class&lt;br /&gt;Set myClass = mySession.GetClass(&quot;Test&quot;)&lt;br /&gt;&#39; Create a &quot;java.lang.Integer&quot; object&lt;br /&gt;Set myObject = myClass.CreateObject(&quot;(I)V&quot;,20)&lt;br /&gt;Msgbox myObject.add(1,2)&lt;br /&gt;Exit Sub&lt;br /&gt;e:&lt;br /&gt;Print &quot;Error : &quot; &amp;amp;Error &amp;amp;Erl()&lt;br /&gt;Exit Sub&lt;/b&gt;&lt;br /&gt;
  890. &lt;br /&gt;
  891. If you change the Script Library, You will get the problem as I mentioned in above.&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/calling-java-script-library-from-lotus.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-2309112986999861160</guid><pubDate>Wed, 11 Apr 2012 12:42:00 +0000</pubDate><atom:updated>2012-04-11T18:14:47.405+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">Lotus Notes</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>Extension Library in Xpage</title><description>Successfully I did my first Extension Library control today.&lt;br /&gt;
  892. &lt;br /&gt;
  893. Customized control using java facescontext. &lt;br /&gt;
  894. &lt;br /&gt;
  895. Thanks to &lt;a href=&quot;http://www-10.lotus.com/ldd/ddwiki.nsf/dx/Creating_a_Java_Control_in_an_NSF&quot; style=&quot;color:red&quot; target=&quot;_blank&quot;&gt;Extension Library&lt;/a&gt;&lt;br /&gt;
  896. &lt;br /&gt;
  897. &lt;br&gt;&lt;/br&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/extension-library.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-1520013231221225692</guid><pubDate>Wed, 11 Apr 2012 07:07:00 +0000</pubDate><atom:updated>2012-06-27T16:40:03.608+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">javascript</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>Dynamic Table - And Getting the Row values from Repeat control</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  898. Can we get the repeat control control&#39;s row value?&lt;br /&gt;
  899. &lt;br /&gt;
  900. Dynamically we can get using Client Side Java script in Xpage.&lt;br /&gt;
  901. &lt;br /&gt;
  902. With the use of Repeat control we can create dynamic rows of field. &lt;br /&gt;
  903. &lt;br /&gt;
  904. And We can use a Pager for creating nice UI.&lt;br /&gt;
  905. &lt;br /&gt;
  906. Also we have CSJS functionality for retrieving the values...&lt;br /&gt;
  907. &lt;br /&gt;
  908. Please find the code as below.,&lt;br /&gt;
  909. &lt;br /&gt;
  910. &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;&lt;br /&gt;
  911. &amp;lt;xp:view xmlns:xp=&quot;http://www.ibm.com/xsp/core&quot;&amp;gt;&lt;br /&gt;
  912. &lt;br /&gt;
  913. &amp;lt;xp:this.beforePageLoad&amp;gt;&amp;lt;![CDATA[#{javascript:sessionScope.dynaField=parseInt(&quot;1&quot;)}]]&amp;gt;&amp;lt;/xp:this.beforePageLoad&amp;gt;&amp;lt;xp:div style=&quot;text-align:center&quot;&amp;gt;&lt;br /&gt;
  914. &amp;lt;xp:span style=&quot;font-weight:bold;color:rgb(0,0,255);font-size:16pt&quot;&amp;gt;Ramkumar&#39;s Dynamic Row Generation&amp;lt;/xp:span&amp;gt;&lt;br /&gt;
  915. &amp;lt;/xp:div&amp;gt;&amp;lt;xp:div style=&quot;text-align:center&quot;&amp;gt;&amp;lt;/xp:div&amp;gt;&lt;br /&gt;
  916. &amp;lt;xp:panel id=&quot;Panel_All&quot; style=&quot;text-align:center&quot;&amp;gt;&lt;br /&gt;
  917. &lt;br /&gt;
  918. &amp;lt;xp:pager layout=&quot;Previous Group Next&quot; id=&quot;pager1&quot; for=&quot;repeat1&quot;&lt;br /&gt;
  919. panelPosition=&quot;top&quot;&amp;gt;&lt;br /&gt;
  920. &amp;lt;/xp:pager&amp;gt;&lt;br /&gt;
  921. &amp;lt;xp:repeat id=&quot;repeat1&quot; var=&quot;test&quot; indexVar=&quot;index&quot;&lt;br /&gt;
  922. value=&quot;#{javascript:parseInt(sessionScope.dynaField)}&quot; rows=&quot;8&quot;&lt;br /&gt;
  923. style=&quot;border:1pt&quot;&amp;gt;&lt;br /&gt;
  924. &lt;br /&gt;
  925. &lt;br /&gt;
  926. &amp;lt;xp:table style=&quot;width:100.0%&quot;&amp;gt;&lt;br /&gt;
  927. &amp;lt;xp:tr&amp;gt;&lt;br /&gt;
  928. &amp;lt;xp:td&lt;br /&gt;
  929. style=&quot;border:1pt;width:32.0%;text-align:center&quot;&amp;gt;&lt;br /&gt;
  930. &amp;lt;xp:inputText id=&quot;inputText1&quot;&amp;gt;&lt;br /&gt;
  931. &amp;lt;xp:this.defaultValue&amp;gt;&amp;lt;![CDATA[#{javascript:return getComponent(&quot;repeat1&quot;).getValue()}]]&amp;gt;&amp;lt;/xp:this.defaultValue&amp;gt;&lt;br /&gt;
  932. &amp;lt;/xp:inputText&amp;gt;&lt;br /&gt;
  933. &amp;lt;/xp:td&amp;gt;&lt;br /&gt;
  934. &amp;lt;xp:td style=&quot;border:1pt;text-align:center&quot;&amp;gt;&lt;br /&gt;
  935. &amp;lt;xp:inputText id=&quot;inputText3&quot;&amp;gt;&amp;lt;/xp:inputText&amp;gt;&lt;br /&gt;
  936. &amp;lt;/xp:td&amp;gt;&lt;br /&gt;
  937. &amp;lt;xp:td style=&quot;border:1pt;text-align:center&quot;&amp;gt;&lt;br /&gt;
  938. &amp;lt;xp:inputText id=&quot;inputText4&quot;&amp;gt;&amp;lt;/xp:inputText&amp;gt;&lt;br /&gt;
  939. &amp;lt;/xp:td&amp;gt;&lt;br /&gt;
  940. &amp;lt;/xp:tr&amp;gt;&lt;br /&gt;
  941. &amp;lt;/xp:table&amp;gt;&lt;br /&gt;
  942. &amp;lt;/xp:repeat&amp;gt;&lt;br /&gt;
  943. &lt;br /&gt;
  944. &lt;br /&gt;
  945. &lt;br /&gt;
  946. &amp;lt;xp:br&amp;gt;&amp;lt;/xp:br&amp;gt;&lt;br /&gt;
  947. &lt;br /&gt;
  948. &lt;br /&gt;
  949. &amp;lt;xp:br&amp;gt;&amp;lt;/xp:br&amp;gt;&lt;br /&gt;
  950. &amp;lt;xp:table style=&quot;width:100%&quot;&amp;gt;&lt;br /&gt;
  951. &amp;lt;xp:tr&amp;gt;&lt;br /&gt;
  952. &amp;lt;xp:td rendered=&quot;false&quot;&amp;gt;&lt;br /&gt;
  953. Number of Field You have added :&lt;br /&gt;
  954. &amp;lt;/xp:td&amp;gt;&lt;br /&gt;
  955. &amp;lt;xp:td style=&quot;display:none&quot;&amp;gt;&lt;br /&gt;
  956. &amp;lt;xp:inputText id=&quot;inputText2&quot;&amp;gt;&amp;lt;/xp:inputText&amp;gt;&lt;br /&gt;
  957. &amp;lt;/xp:td&amp;gt;&lt;br /&gt;
  958. &amp;lt;/xp:tr&amp;gt;&lt;br /&gt;
  959. &amp;lt;xp:tr&amp;gt;&lt;br /&gt;
  960. &amp;lt;xp:td colspan=&quot;2&quot; style=&quot;text-align:center&quot;&amp;gt;&lt;br /&gt;
  961. &amp;lt;xp:button value=&quot;ADD FIELD&quot; id=&quot;button1&quot;&amp;gt;&lt;br /&gt;
  962. &amp;lt;xp:eventHandler event=&quot;onclick&quot; submit=&quot;true&quot;&lt;br /&gt;
  963. refreshMode=&quot;partial&quot; refreshId=&quot;Panel_All&quot;&amp;gt;&lt;br /&gt;
  964. &amp;lt;xp:this.action&amp;gt;&amp;lt;![CDATA[#{javascript:sessionScope.dynaField=parseInt(sessionScope.dynaField)+1&lt;br /&gt;
  965. getComponent(&quot;repeat1&quot;).setValue(parseInt(sessionScope.dynaField));&lt;br /&gt;
  966. getComponent(&quot;inputText2&quot;).setValue(parseInt(sessionScope.dynaField));}]]&amp;gt;&amp;lt;/xp:this.action&amp;gt;&lt;br /&gt;
  967. &amp;lt;/xp:eventHandler&amp;gt;&lt;br /&gt;
  968. &amp;lt;/xp:button&amp;gt;&lt;br /&gt;
  969. &amp;lt;xp:button value=&quot;REMOVE FIELD&quot; id=&quot;button2&quot;&amp;gt;&lt;br /&gt;
  970. &amp;lt;xp:eventHandler event=&quot;onclick&quot; submit=&quot;true&quot;&lt;br /&gt;
  971. refreshMode=&quot;partial&quot; refreshId=&quot;Panel_All&quot;&amp;gt;&lt;br /&gt;
  972. &amp;lt;xp:this.action&amp;gt;&amp;lt;![CDATA[#{javascript:sessionScope.dynaField=parseInt(sessionScope.dynaField)-1&lt;br /&gt;
  973. getComponent(&quot;repeat1&quot;).setValue(parseInt(sessionScope.dynaField));&lt;br /&gt;
  974. getComponent(&quot;inputText2&quot;).setValue(parseInt(sessionScope.dynaField));}]]&amp;gt;&amp;lt;/xp:this.action&amp;gt;&lt;br /&gt;
  975. &amp;lt;xp:this.script&amp;gt;&amp;lt;![CDATA[var t=document.getElementById(&quot;#{id:inputText2}&quot;).value;&lt;br /&gt;
  976. if(t==0 || t==&quot;0&quot;)&lt;br /&gt;
  977. {&lt;br /&gt;
  978. alert(&quot;You can not do this opertion&quot;);&lt;br /&gt;
  979. return false;&lt;br /&gt;
  980. }]]&amp;gt;&amp;lt;/xp:this.script&amp;gt;&lt;br /&gt;
  981. &amp;lt;/xp:eventHandler&amp;gt;&lt;br /&gt;
  982. &amp;lt;/xp:button&amp;gt;&lt;br /&gt;
  983. &amp;lt;/xp:td&amp;gt;&lt;br /&gt;
  984. &lt;br /&gt;
  985. &amp;lt;/xp:tr&amp;gt;&lt;br /&gt;
  986. &amp;lt;/xp:table&amp;gt;&lt;br /&gt;
  987. &amp;lt;xp:br&amp;gt;&amp;lt;/xp:br&amp;gt;&amp;lt;xp:button value=&quot;Get the Repeat Control Value&quot; id=&quot;button4&quot; style=&quot;width:200.0px&quot;&amp;gt;&lt;br /&gt;
  988. &amp;lt;xp:eventHandler event=&quot;onclick&quot; submit=&quot;false&quot;&amp;gt;&lt;br /&gt;
  989. &amp;lt;xp:this.script&amp;gt;&amp;lt;![CDATA[try&lt;br /&gt;
  990. {&lt;br /&gt;
  991. var row=window.prompt(&quot;Please Enter the Number of Row&quot;);&lt;br /&gt;
  992. row=row-1&lt;br /&gt;
  993. var id1=&quot;view:_id1:repeat1:&quot;+row.toString()+&quot;:inputText1&quot;&lt;br /&gt;
  994. var id2=&quot;view:_id1:repeat1:&quot;+row.toString()+&quot;:inputText3&quot;&lt;br /&gt;
  995. var id3=&quot;view:_id1:repeat1:&quot;+row.toString()+&quot;:inputText4&quot;&lt;br /&gt;
  996. var val=document.getElementById(id1).value.toString() +&quot;, &quot;+document.getElementById(id2).value+&quot;, &quot;+document.getElementById(id3).value&lt;br /&gt;
  997. alert(val)&lt;br /&gt;
  998. }&lt;br /&gt;
  999. catch(e)&lt;br /&gt;
  1000. {&lt;br /&gt;
  1001. window.prompt(&quot;Please Enter the Valid Column&quot;)&lt;br /&gt;
  1002. }]]&amp;gt;&amp;lt;/xp:this.script&amp;gt;&lt;br /&gt;
  1003. &amp;lt;/xp:eventHandler&amp;gt;&lt;br /&gt;
  1004. &amp;lt;/xp:button&amp;gt;&amp;lt;/xp:panel&amp;gt;&lt;br /&gt;
  1005. &amp;lt;xp:eventHandler event=&quot;onClientLoad&quot; submit=&quot;true&quot;&lt;br /&gt;
  1006. refreshMode=&quot;norefresh&quot;&amp;gt;&amp;lt;/xp:eventHandler&amp;gt;&lt;br /&gt;
  1007. &amp;lt;/xp:view&amp;gt;&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/dynamic-table-and-getting-row-values.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-8015541540838663984.post-1804842911435217641</guid><pubDate>Thu, 05 Apr 2012 11:44:00 +0000</pubDate><atom:updated>2012-06-27T16:40:52.564+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">javascript</category><category domain="http://www.blogger.com/atom/ns#">Xpages</category><title>Invoking onClick enent in SSJS in Xpage</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
  1008. We can invoke the Event of a button using SSJS...&lt;br /&gt;
  1009. &lt;br /&gt;
  1010. Normally we used CSJS for this action. &lt;br /&gt;
  1011. &lt;br /&gt;
  1012. Code as follows&lt;br /&gt;
  1013. &lt;br /&gt;
  1014. &lt;strong&gt;document.getElementById(&quot;ID&quot;).click()&lt;/strong&gt;&lt;br /&gt;
  1015. &lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;
  1016. &lt;strong&gt;But same we can do in SSJS also...&lt;/strong&gt;&lt;br /&gt;
  1017. &lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;
  1018. &lt;strong&gt;getCompoenent(&quot;ID&quot;).getOnclick()&lt;/strong&gt;&lt;/div&gt;</description><link>http://kramkumarmca.blogspot.com/2012/04/invoking-onclick-enent-in-ssjs-in-xpage.html</link><author>noreply@blogger.com (Ramkumar)</author><thr:total>1</thr:total></item></channel></rss>

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//kramkumarmca.blogspot.com/feeds/posts/default%3Falt%3Drss

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda