<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title> </title>
        <description></description>
        <link>http://smart-toucan.com/forum/index.php</link>
        <lastBuildDate>Mon, 06 Sep 2010 19:20:41 -0400</lastBuildDate>
        <generator>Phorum 5.2.9a</generator>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,191,197#msg-197</guid>
            <title>Re: Test Execution Options</title>
            <link>http://smart-toucan.com/forum/read.php?2,191,197#msg-197</link>
            <description><![CDATA[ Andy<br />
<br />
There is a special AutoUser command available for this: Script.Break<br />
<br />
<pre class="bbcode">
If not result_as_expected then
   WriteLog &quot;ERROR&quot;
   Script.Break
End if</pre>
<br />
<br />
Lucius]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 01 Sep 2010 10:17:58 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,195,196#msg-196</guid>
            <title>Re: Setting Text</title>
            <link>http://smart-toucan.com/forum/read.php?2,195,196#msg-196</link>
            <description><![CDATA[ Hello Andy<br />
<br />
Yes, there are fields like this. I think with the file name field in the &quot;Open Database&quot; Dialog it is the same.<br />
<br />
There are two different approaches we use. Which one is best depends on the characteristics of the specific field.<br />
<br />
The first method is to mark and delete the content. But this obviously will only work if the field accepts Ctrl-A as a command and not all fields do this. Here is an example:<br />
<br />
<pre class="bbcode">
Click &quot;RichText.Job Nol&quot;
KeyPress Key.Ctrl+Asc(&quot;A&quot;)  ' This marks the complete content
KeyPress Key.Delete             ' Deletes the content</pre>
<br />
If this does not work then you might think about using a loop, This will always work but it will be slower. Here is the according example:<br />
<br />
code]<br />
Click &quot;RichText.Job Nol&quot;<br />
KeyPress Key.end  ' or may be key.right. The point is to place the cursor at the end of the string<br />
For i=1 to 20           ' for i you must choose a max value wich makes sense in your application<br />
  KeyPress Key.backspace            ' Deletes the content<br />
next<br />
[/code]<br />
<br />
Regards<br />
Lucius]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 01 Sep 2010 10:15:23 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,195,195#msg-195</guid>
            <title>Setting Text</title>
            <link>http://smart-toucan.com/forum/read.php?2,195,195#msg-195</link>
            <description><![CDATA[ Hi,<br />
<br />
I have a field called &quot;RichText.Job No.&quot;<br />
<br />
Its a text entry field. When I select it and enter a new value, the text is NOT overwriiten, so I end up with too many characters. I have tried using the &quot;kepress 127&quot; delete key, but cant get rid of all whats there. I always have one character remaining!<br />
<br />
Is the an easier way to clear or overwrite what is there?]]></description>
            <dc:creator>AndyCase</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 30 Aug 2010 20:21:31 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,191,194#msg-194</guid>
            <title>Re: Test Execution Options</title>
            <link>http://smart-toucan.com/forum/read.php?2,191,194#msg-194</link>
            <description><![CDATA[ Whatever works is good. I have started to do the If then else, works fine<br />
What VB code should I use to stop execution?]]></description>
            <dc:creator>AndyCase</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 30 Aug 2010 20:18:21 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,191,192#msg-192</guid>
            <title>Re: Test Execution Options</title>
            <link>http://smart-toucan.com/forum/read.php?2,191,192#msg-192</link>
            <description><![CDATA[ Hello Andy<br />
<br />
Setting start/stop points is a feature we'd also like to implement and which we discussed several times. However, it would collide with other important features such as the object variables and the build process for the runtime script.<br />
<br />
So what we use over here is the good old If-cases for including or excluding parts of the script. I know this is old fashioned ...<br />
<br />
Regards<br />
<br />
Lucius]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Sun, 29 Aug 2010 16:32:56 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,191,191#msg-191</guid>
            <title>Test Execution Options</title>
            <link>http://smart-toucan.com/forum/read.php?2,191,191#msg-191</link>
            <description><![CDATA[ There doesnt seem to be many options with regard to executing the scripts.<br />
<br />
Options I would like to be able to do is:-<br />
1. Set a point at which to stop in the script.<br />
2. start running the script from a certain point within the script.<br />
<br />
Can you provide some suggestions.]]></description>
            <dc:creator>AndyCase</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 26 Aug 2010 20:29:15 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,174,175#msg-175</guid>
            <title>Re: AutoUser Roadmap</title>
            <link>http://smart-toucan.com/forum/read.php?2,174,175#msg-175</link>
            <description><![CDATA[ Hello Olaf<br />
<br />
The German Notes User Group Conference at the beginning of June. Based on the talks with customers and partners there we will update the release plan.<br />
<br />
Regards<br />
<br />
Lucius Bobikiewicz]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 21 May 2010 06:31:30 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,174,174#msg-174</guid>
            <title>AutoUser Roadmap</title>
            <link>http://smart-toucan.com/forum/read.php?2,174,174#msg-174</link>
            <description><![CDATA[ Hi,<br />
<br />
i liked the road map posted previously....even if it lacks the figures for the release years ;)<br />
<br />
I it possible to get an updated schedule in this thread?<br />
<br />
Cheers,<br />
Olaf]]></description>
            <dc:creator>Olaf</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 18 May 2010 10:55:00 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,172,173#msg-173</guid>
            <title>Re: Tabs in tables</title>
            <link>http://smart-toucan.com/forum/read.php?2,172,173#msg-173</link>
            <description><![CDATA[ Hello Maik<br />
<br />
Tabs in tables should work without any problems. This might be a regression bug of the new build. I will contact you by mail and provide you the new version.<br />
<br />
Regards<br />
<br />
Lucius Bobikiewicz]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 17 May 2010 10:00:02 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,172,172#msg-172</guid>
            <title>Tabs in tables</title>
            <link>http://smart-toucan.com/forum/read.php?2,172,172#msg-172</link>
            <description><![CDATA[ Hi,<br />
<br />
i have a form with a table with tabs. The problem is: I can not capture the tabs in the table. <br />
<br />
When I try to capture the tabs the focus is only arround all tabs, but not on the desired tab.<br />
<br />
kind regards<br />
<br />
Maik Endler]]></description>
            <dc:creator>men</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 17 May 2010 09:41:36 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,170,171#msg-171</guid>
            <title>Re: Close tab window</title>
            <link>http://smart-toucan.com/forum/read.php?2,170,171#msg-171</link>
            <description><![CDATA[ Hi Gaurav,<br />
<br />
Thank you for posting this issue to the forum.  Indeed the described behaviour indicates a bug that will be fixed very soon.  For now as a workaround you might try to capture (with &quot;Force capture&quot; checked) File-&gt;Close menu item that also closes a tab.  Please check for the latest version soon - it will contain a fix for the issue you have described, we are sorry for the inconveniences.]]></description>
            <dc:creator>eugene_dorfman</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Sat, 15 May 2010 04:00:44 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,170,170#msg-170</guid>
            <title>Close tab window</title>
            <link>http://smart-toucan.com/forum/read.php?2,170,170#msg-170</link>
            <description><![CDATA[ Hello Guys, <br />
<br />
I just started using Smart Toucan recently. I am writing a simple script to schedule a meeting using Calendar . In the script, I want to close the tabs that I open. I found 3 ways to do it from the UI:<br />
- Click on the X button in the tab<br />
- Right click the tab, select &quot;Close Window&quot;<br />
- Press &quot;Ctrl+W'<br />
<br />
I can't get the first 2 ways working.<br />
<br />
- Click on the X button in the tab: I used the following command. It just clicks the tab, not close it:<br />
        Click &quot;Tab.New Calendar Entry for user&quot;<br />
<br />
- Right click the tab, select &quot;Close Window&quot;: I used the following command. It doesn't work either (btw I had to use the &quot;force&quot; option to capture &quot;Close Window&quot;<br />
        RightClick &quot;Tab.New Calendar Entry for user&quot;<br />
        Click &quot;Menu.#32768&quot;<br />
        <br />
- Press &quot;Ctrl+W': The following command works, but I can't use it (because I generate a popup outside Lotus Notes)<br />
        KeyPress Key.CTRL + asc('W')<br />
<br />
I assume there would be a standard way to close a tab. Can someone point me to the right direction.<br />
<br />
Thanks,<br />
Gaurav]]></description>
            <dc:creator>gagupta</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 14 May 2010 16:50:37 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,167,169#msg-169</guid>
            <title>Re: Visible() fails when LN-Client is started via WScript.Shell.run</title>
            <link>http://smart-toucan.com/forum/read.php?2,167,169#msg-169</link>
            <description><![CDATA[ Hello Lucius Bobikiewicz,<br />
<br />
thanks a lot, it works!<br />
<br />
Regards,<br />
Theodor Hartmann]]></description>
            <dc:creator>TheodorHartmann</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 30 Mar 2010 05:07:06 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,167,168#msg-168</guid>
            <title>Re: Visible() fails when LN-Client is started via WScript.Shell.run</title>
            <link>http://smart-toucan.com/forum/read.php?2,167,168#msg-168</link>
            <description><![CDATA[ Hello Theodor Hartmann !<br />
<br />
Thank you for your posting. The reason for this behaviour is that AutoUser for stability reasons deliberately does not connect to Notes anymore once a script is already running.<br />
<br />
In our own test system we start both, Notes and AutoUser via batch files. Although this is quite &quot;low tech&quot; (or may be because if this) it works perfectly nice and reliable. <br />
<br />
Another option to solve your use case is to split your script into two using the &quot;script.next&quot; command. When you use script.next (not script.include !) there is a tiny pause between the execution of the first script and the execution of the second script and this pause AutoUser will use for connecting to the client which has been launched before.<br />
<br />
In code this solution looks like this:<br />
<br />
Script 1: <b>&quot;Launch_Notes.vbs:&quot;</b><br />
<pre class="bbcode">
01: ItemContainer = &quot;LN_Connection_item_container.xml&quot;
02: FastMode=false
03: TimeOut=5
04
05: Script.Next = &quot;Proceed_After_Launch.vbs&quot;
06
07: Set shell = CreateObject(&quot;WScript.Shell&quot;)
08: shell.run &quot;notes&quot;, 1, false
07:</pre>
<br />
<br />
Now after a very tiny pause the next script <b>&quot;Proceed_After_Launch.vbs&quot;</b> will start, but this time AutoUser will connect to the Notes client.<br />
Script 2 <b>&quot;Proceed_After_Launch.vbs&quot;</b>:<br />
<br />
<pre class="bbcode">
01: ItemContainer = &quot;LN_Connection_item_container.xml&quot;
02: FastMode=false
03: TimeOut=5
04 'it might be necessary to extend the TimeOut or to add a sleep in order
05 'to provide AutoUser enough time for properly connecting to the Notes client
06
07: If Not Visible(&quot;Login.Text.Password&quot;) Then
08:	WriteLog &quot;Unable to find password field&quot; 
09: Else
10:	WriteLog &quot;Detected password field&quot;
11: End If
12:
13: WriteTo &quot;Login.Text.Password&quot;, &quot;wrongPassword&quot;
14: KeyPress Key.Enter
15: 
16: Click &quot;RichButton.New Message&quot;
17: 
18: WriteLog &quot;Reached end of script&quot;</pre>
<br />
Please let us know if this works for you.<br />
<br />
Regards<br />
<br />
Lucius Bobikiewicz]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 29 Mar 2010 07:38:49 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,167,167#msg-167</guid>
            <title>Visible() fails when LN-Client is started via WScript.Shell.run</title>
            <link>http://smart-toucan.com/forum/read.php?2,167,167#msg-167</link>
            <description><![CDATA[ Hello,<br />
<br />
I have problems with the following script: (ItemContainer.xml is attached)<br />
<pre class="bbcode">
01: ItemContainer = &quot;LN_Connection_item_container.xml&quot;
02: FastMode=false
03: TimeOut=5
04: 
05: Set shell = CreateObject(&quot;WScript.Shell&quot;)
06: shell.run &quot;notes&quot;, 1, false
07:
08: Sleep 2 ' or 20, or 200 -&gt; same result
09: 
10: If Not Visible(&quot;Login.Text.Password&quot;) Then
11:	WriteLog &quot;Unable to find password field&quot; 
12: Else
13:	WriteLog &quot;Detected password field&quot;
14: End If
15:
16: WriteTo &quot;Login.Text.Password&quot;, &quot;wrongPassword&quot;
17: KeyPress Key.Enter
18: 
19: Click &quot;RichButton.New Message&quot;
20: 
21: WriteLog &quot;Reached end of script&quot;</pre>
<br />
Result:<br />
Login-Window is opened<br />
&quot;Unable to find password field&quot; is written to the log<br />
&quot;wrongPassword&quot; is written to the password field<br />
Line #19 fails silently (as it is the wrong password, this button is not visible)<br />
&quot;Reached end of script&quot; is written to the log<br />
<br />
Also, the AU-Statusbar show's &quot;No connection to Notes&quot; during the execution, a few seconds after the end of script, the bulb goes green.<br />
<br />
I know, user switching can be performed with the &quot;Switch id&quot; command, as shown in one of the examples, but for some cases, it would be useful, to perform a restart of the LN client.<br />
<br />
Best regards,<br />
Theodor Hartmann<br />
<br />
IBM Lotus Notes 8.5<br />
<br />
Release 8.5.1 <br />
Revision 20090929.1223 (Release 8.5.1) <br />
Standard Configuration<br />
<br />
AutoUser<br />
<br />
Vers. 1.1.920<br />
<br />
PS: If I remove line #5 and #6, and launch the LN client manually before starting the script, it works as expected]]></description>
            <dc:creator>TheodorHartmann</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Mon, 29 Mar 2010 04:24:44 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,166#msg-166</guid>
            <title>Re: Function notesversion</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,166#msg-166</link>
            <description><![CDATA[ Thank you for a hint, we might incorporate this approach into one of the future releases]]></description>
            <dc:creator>eugene_dorfman</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 18 Mar 2010 06:25:59 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,164,165#msg-165</guid>
            <title>Re: 64Bit OS</title>
            <link>http://smart-toucan.com/forum/read.php?2,164,165#msg-165</link>
            <description><![CDATA[ Hi eknori,<br />
<br />
Yes AU works fine on 64-bit Windows 7.  Actually the development is done on this machine as well.]]></description>
            <dc:creator>eugene_dorfman</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 18 Mar 2010 06:13:55 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,164,164#msg-164</guid>
            <title>64Bit OS</title>
            <link>http://smart-toucan.com/forum/read.php?2,164,164#msg-164</link>
            <description><![CDATA[ Will AU work on 64bit OS? I'm going to get a new laptop later this month with Win7 64bit.]]></description>
            <dc:creator>eknori</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 18 Mar 2010 03:33:35 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,163#msg-163</guid>
            <title>Re: Function notesversion</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,163#msg-163</link>
            <description><![CDATA[ The most reliable method to get the version in detail is to use an API Call ( NSFDbGetMajMinVersion )<br />
<br />
This will give in deep information even about a installed fixpack. <br />
<br />
Here is a simple Lotus Script that shows how this can be accomplished.<br />
<br />
Type BUILDVERSION<br />
	MajorVersion As Long<br />
	MinorVersion As Long<br />
	QMRNumber As Long<br />
	QMUNumber As Long<br />
	HotfixNumber As Long<br />
	Flags As Long<br />
	FixpackNumber As Long<br />
	Spare(2) As Long<br />
End Type<br />
<br />
Declare Sub W32_OSPathNetConstruct Lib &quot;nnotes&quot; Alias &quot;OSPathNetConstruct&quot; (Byval portName As Lmbcs String, Byval ServerName As Lmbcs String, Byval FileName As Lmbcs String, Byval retPathName As Lmbcs String)<br />
Declare Function NSFDbOpen Lib &quot;nnotes&quot; Alias &quot;NSFDbOpen&quot; (Byval dbName As Lmbcs String, hdb As Long) As Integer<br />
Declare Function NSFDbClose Lib &quot;nnotes&quot; Alias &quot;NSFDbClose&quot; (Byval hdb As Long) As Integer<br />
Declare Function NSFDbGetMajMinVersion Lib &quot;nnotes&quot; Alias &quot;NSFDbGetMajMinVersion&quot; (Byval hdb As Long, bv As BUILDVERSION) As Integer<br />
<br />
<br />
Sub Click(Source As Button)<br />
	Dim dbHandle As Long<br />
	Dim ServerName As String<br />
	Dim dbName As String<br />
	ServerName = &quot;&quot;<br />
	dbName = &quot;names.nsf&quot;<br />
	Dim BV As BUILDVERSION<br />
	Dim db As New NotesDatabase ( ServerName, dbName )<br />
	Call NSFDbOpen ( ServerName +&quot;!!&quot; + dbName, dbHandle)<br />
	If dbHandle &lt;&gt; 0 Then<br />
		Call NSFDbGetMajMinVersion ( dbHandle, BV )<br />
	End If<br />
	NSFDbClose dbHandle<br />
	Msgbox BV.MajorVersion &amp; &quot;.&quot; &amp; BV.MinorVersion &amp;  &quot;.&quot; &amp; BV.QMRNumber<br />
End Sub]]></description>
            <dc:creator>eknori</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 18 Mar 2010 02:45:24 -0400</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,162#msg-162</guid>
            <title>Re: Function notesversion</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,162#msg-162</link>
            <description><![CDATA[ Hi Maik<br />
<br />
You are right. AU analyzes FileVersionInfo provided by notes.exe in the Notes app folder.  We can analyze nlnotes.exe FileVersionInfo as well if this is more reliable.  So far notes.exe seemed to be a reliable version provider, but as you have shown - it does not have to be of the same version as the rest of the Notes distribution :).  <br />
<br />
Thank you for this interesting information.]]></description>
            <dc:creator>eugene_dorfman</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 03 Mar 2010 09:02:09 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,161#msg-161</guid>
            <title>Re: Function notesversion</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,161#msg-161</link>
            <description><![CDATA[ Hallo Lucius,<br />
<br />
probably I've found the problem. Au analyzed the file notes.exe. I use a special notes.exe to perform functions before the notes-start. This particular notes.exe has the version shown. But there are dlls that show the version better. <br />
<br />
I'll answer soon.<br />
<br />
Regars <br />
Maik Endler]]></description>
            <dc:creator>men</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 03 Mar 2010 08:16:32 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,160#msg-160</guid>
            <title>Re: Function notesversion</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,160#msg-160</link>
            <description><![CDATA[ Hello Maik<br />
<br />
Is this a permanent error? We tried to reproduce it but here &quot;NotesVersion&quot; works fine.<br />
<br />
We noticed a similar error some months ago when switching from one Notes Client to another. But in that case AU always provided 0.0.000. The number you provide we haven't seen here yet.<br />
<br />
Which version of AutoUser are you currently working with?<br />
<br />
Regards<br />
<br />
Lucius Bobikiewicz]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Wed, 03 Mar 2010 07:32:01 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,159,159#msg-159</guid>
            <title>Function notesversion</title>
            <link>http://smart-toucan.com/forum/read.php?2,159,159#msg-159</link>
            <description><![CDATA[ Hello,<br />
<br />
Function notesversion displays:<br />
<br />
writelog &quot;#### Current Version is: &quot;&amp;notesversion&amp;&quot; ####&quot;<br />
<br />
#### Current Version is: 5.0.0.0.b.de ####<br />
<br />
but installed is:<br />
<br />
Release 7.0.2 HF930 November 05, 2007 ...<br />
<br />
kind regards<br />
Maik Endler]]></description>
            <dc:creator>men</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Tue, 02 Mar 2010 04:30:39 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,156,158#msg-158</guid>
            <title>Re: More suggestions for the next version</title>
            <link>http://smart-toucan.com/forum/read.php?2,156,158#msg-158</link>
            <description><![CDATA[ Hello Sviveen<br />
<br />
For writing the current date plus 10 you  an use the VBScript functions 'CDate' and 'Now'. The line you need will then look like this:<br />
<br />
<pre class="bbcode">
Write cdate(now+10)</pre>
<br />
AutoUser is based on VBScript so you can use allmost all VBScript functions (only msgbox and inputbox are not available but there are workarounds for this).<br />
<br />
On <a href="http://msdn.microsoft.com/en-us/library/t0aew7h6(VS.85).aspx" target="_blank" rel="nofollow" >this</a> Microsoft page you find a complete VBScript reference. <br />
<br />
Regards<br />
<br />
Lucius]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 05 Feb 2010 03:28:04 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,110,157#msg-157</guid>
            <title>Re: New command to switch in single step mode</title>
            <link>http://smart-toucan.com/forum/read.php?2,110,157#msg-157</link>
            <description><![CDATA[ Hello Sviveen<br />
<br />
The break points will be an interesting discussion. To add break points is quite simple. The more tricky issue is how to handle the settings. How does AU know which item container to use at this point? One option might be to leave it to the test author. Another solution might be to introduce several break points, which enable the author to select additional lines of codes for execution. <br />
<br />
However, before we start working on this we will as usual contact users and invite them for a design discussion.<br />
<br />
Our current road map looks like this:<br />
<br />
Rel. 1.2 ~ end of February; Main focus is on improved item handling. Renaming, editing, sorting<br />
<br />
Rel. 1.3 ~ March; Some &quot;internal&quot; improvements, may be breakpoints, handling of views<br />
<br />
Rel. 2.0 ~ End of Q2? AU should be able to control Xpages and Web applications in browser<br />
<br />
Rel. 2.x ~ New editor<br />
<br />
Regards<br />
<br />
Lucius]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 05 Feb 2010 02:43:17 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,156,156#msg-156</guid>
            <title>More suggestions for the next version</title>
            <link>http://smart-toucan.com/forum/read.php?2,156,156#msg-156</link>
            <description><![CDATA[ Is there already an option to fill out a date, calculated from today? In case a form has a validation and does not accept dates in the past, I would like to set the date automatically.<br />
<br />
The command should be like: Date(Format:string,Offset:integer). Offset can be a positive of negative value, to indicate the days after (positive) or before (negative) today.<br />
<br />
For example:<br />
<br />
Write Date(&quot;dd-mmm-yyyy&quot;,10)<br />
<br />
which should return the date tens days from now.]]></description>
            <dc:creator>sviveen</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 04 Feb 2010 23:45:03 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,110,155#msg-155</guid>
            <title>Re: New command to switch in single step mode</title>
            <link>http://smart-toucan.com/forum/read.php?2,110,155#msg-155</link>
            <description><![CDATA[ Good suggestion; I would like to start a script at any given point. By doing that, we can build a script step-by-step, instead having to start from the beginning every time.<br />
<br />
Is there any estimated for when V2.0 will be available?]]></description>
            <dc:creator>sviveen</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 04 Feb 2010 19:35:43 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,153,154#msg-154</guid>
            <title>Re: Problem with opening Notes search box</title>
            <link>http://smart-toucan.com/forum/read.php?2,153,154#msg-154</link>
            <description><![CDATA[ Hi Karin,<br />
<br />
Thank you for posting the issue to our forum.<br />
<br />
This behaviour seems to be by design (specifically by Lotus Notes design), the click goes to &quot;OutlineItem.Ordner Eingang&quot;, then the search box opens right away and looses focus after the Inbox has finished loading, therefore Write command types characters outside the text field.  If you insert the Sleep right after the click it should wait until the Inbox has finished loading and only then open the search box - in this case the search box has the focus and the typing goes directly to the text field:<br />
<br />
<pre class="bbcode">
Click &quot;OutlineItem.Ordner Eingang&quot; 
sleep 1                      'little pause which should help, maybe set it even to 2 seconds
keypress key.ctrl+asc(&quot;e&quot;)   'opens search box
write &quot;testmail&quot;             'enters search term
keypress key.enter           'starts search</pre>
<br />
Hope this helps, at least it works on my side like this.]]></description>
            <dc:creator>eugene_dorfman</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 14 Jan 2010 20:04:59 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,153,153#msg-153</guid>
            <title>Problem with opening Notes search box</title>
            <link>http://smart-toucan.com/forum/read.php?2,153,153#msg-153</link>
            <description><![CDATA[ Good Evening!<br />
<br />
We are working on a script which requires finding notification mails within the inbox.<br />
<br />
We want to use the search box which works perfect as long a we activate the inbox manually and run this code:<br />
<br />
<pre class="bbcode">
keypress key.ctrl+asc(&quot;e&quot;)   'opens search box
write &quot;testmail&quot;             'enters search term
keypress key.enter           'starts search</pre>
<br />
<br />
The problem is: This fails as soon as we add a command line which let AutoUser click on the inbox. The search box opens but the search field always remains empty. We have already tried to add a pause after opening the search box but this does not help as well.<br />
<br />
<pre class="bbcode">
Click &quot;OutlineItem.Ordner Eingang&quot; 
keypress key.ctrl+asc(&quot;e&quot;)   'opens search box
sleep 1                      'little pause which does not help
write &quot;testmail&quot;             'enters search term
keypress key.enter           'starts search</pre>
<br />
Clients used: German Notes 7.0.3 with AutoUser 1.1.746<br />
<br />
Regards<br />
<br />
Karin Klimbold]]></description>
            <dc:creator>Karin Klimbold</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Thu, 14 Jan 2010 13:24:19 -0500</pubDate>
        </item>
        <item>
            <guid>http://smart-toucan.com/forum/read.php?2,149,152#msg-152</guid>
            <title>Re: Auto User is not recognizing some of the objects in Lotus Notes</title>
            <link>http://smart-toucan.com/forum/read.php?2,149,152#msg-152</link>
            <description><![CDATA[ We can't reproduce this error. Please contact me by email for arranging an online session on one of our test machines.<br />
<br />
Lucius Bobkiewicz]]></description>
            <dc:creator>Lucius Bobikiewicz</dc:creator>
            <category>AutoUser for Lotus Notes</category>
            <pubDate>Fri, 01 Jan 2010 14:30:23 -0500</pubDate>
        </item>
    </channel>
</rss>
