<?xml version="1.0" encoding="us-ascii"?>
<rss version="2.0"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
 xmlns:admin="http://webns.net/mvcb/"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel>
<title>Mick Moignard&#8217;s Blog</title>
<description>Mick on Lotus Notes, DCC in Model Railroading, and anything else I care to write about. </description>
<link>http://www.MickMoignard.com/MickMoignard/mickmoignard.nsf/</link>
<language>en-us</language>
<lastBuildDate>Tue, 25 May 2010 15:43:12 +0100</lastBuildDate>
<item>
<title>Running Lotus Notes on an iPod Touch.</title>
<pubDate>Tue, 25 May 2010 15:43:12 +0100</pubDate>
<description>
<![CDATA[ 
I've just been running Lotus Notes on a iPod Touch, or rather, using Lotus Notes on an iPod Touch. There's a free Citrix Receiver client app on the AppStore - search for Citrix. I installed Citrix ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25052010154310MMOKA3.htm</link>
<category>iPod</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25052010154310MMOKA3.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25052010154310MMOKA3.htm</guid>
<content:encoded><![CDATA[ I've just been running Lotus Notes on a iPod Touch, or rather, using Lotus Notes on an iPod Touch. &nbsp; <br /> <br />There's a free Citrix Receiver client app on the AppStore - search for Citrix. &nbsp;I installed Citrix Receiver 2.2.1 - and note that there appears to be two versions, on for the iPhone/iTouch, and one for the iPad which may be the same thing, may be different. &nbsp;The config for connections to Citrix servers is simple: five things to enter. &nbsp;Connect up, sign on, and start the Notes client.  <br /> <br />It worked well, with the performance that you'd expect with Notes running on Citrix - I was using Notes 8.5.1. &nbsp; The Citrix App has gestures for zooming, panning and scrolling, so wandering around the screen is pretty easy, zooming and panning as relevant. &nbsp; Entering data is more of a challenge; what takes a little more effort and care is to hit the screen accurately. &nbsp; I found I could take several attempts to get the cursor into a field, or to click a control such as a button, field helper, OK button on a dialog, and not then accidentally fill fields up with carriage returns. &nbsp;I found myself zooming in and out a lot, to be sure that I was hitting what I wanted to hit, but then be able to see enough of the Notes screen to be able to do what I wanted. &nbsp;So actually entering data was a bit of a chore &nbsp;- not something you'd want to do a lot of. &nbsp; It does portrait to landscape switches well, and that also helped. <br /> <br />Given that the Notes app I played with was one that's a data entry app, with pulldowns, validations and so on, which meant that I was moving around the screen a lot to deal with dialog/picklist windows, &nbsp;I'd say that the usability was reasonable - say 3 out of 5. With a Notes application that's more sensitive to the screen size, and one that is more oriented to reading than data entry, I'd say that it's perfectly usable. &nbsp;  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/25052010154310MMOKA3.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25052010154310MMOKA3.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>How strange is this?</title>
<pubDate>Thu, 11 Mar 2010 10:42:02 -0400</pubDate>
<description>
<![CDATA[ 
In an application I'm working on now, from a given document - a Claim, I need to look up a value on a connected document, a Partner. In this application there is a function to do just that, fetch a P ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11032010104202MMOLEU.htm</link>
<category>LotusScript</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11032010104202MMOLEU.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11032010104202MMOLEU.htm</guid>
<content:encoded><![CDATA[ In an application I'm working on now, from a given document - a Claim, I need to look up a value on a connected document, a Partner. &nbsp;In this application there is a function to do just that, fetch a Partner document based on a value in Claim; &nbsp;The code snippet looks like this: <br /> <br />  &nbsp; &nbsp; &nbsp; &nbsp;'is the partner tax exempt? &nbsp; <br />  &nbsp; &nbsp; &nbsp; &nbsp;Dim ClientInsurer As NotesDocument <br />  &nbsp; &nbsp; &nbsp; &nbsp;Set ClientInsurer = GetPartnerDoc(claim.ID_ClientInsurer(0)) <br />  &nbsp; &nbsp; &nbsp; &nbsp;If ClientInsurer Is Nothing then <br /> <br /> And when this is run, ClientInsurer is invariably Nothing. &nbsp; <br /> <br /> GetPartnerDoc looks like this: <br /> <br /> Function GetPartnerDoc(IPCode As String) As NotesDocument <br />  &nbsp; &nbsp; &nbsp; &nbsp;Dim pDB As NotesDatabase, insurers As NotesView <br />  &nbsp; &nbsp; &nbsp; &nbsp;Set pDB=GetPartnersDB <br />  &nbsp; &nbsp; &nbsp; &nbsp;Set Insurers=pDB.GetView(<em>"LookUpIPCode"</em>) <br />  &nbsp; &nbsp; &nbsp; &nbsp;Set GetPartnerDoc=Insurers.GetDocumentByKey(IPCode,True) <br /> End Function <br /> <br /> When I look at this with the debugger, I can see that the last line of getPartnerDoc populates getPartnerDoc with a NotesDocument data type, and it is indeed the partner document that I want - getPartnerDoc seems to work OK. &nbsp; Yet that value, that I can see ready to go when it's executed the last line of GetPartnerDoc doesn't get back in to ClientInsurer in the invoking code. &nbsp;How strange is that? <br /> <br /> I've bypassed it by replacing the call to GetPartnerDoc with a direct lookup to the same view, and that works just fine. <br /> <br /> Btw: &nbsp;this is with Designer 8.5.1 FP1, Notes 851FP1 client and a Donino 851FP1 server. &nbsp;However when the code runs on a 7.0.something server, it also generates the same erroneous result. &nbsp;   ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/11032010104202MMOLEU.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11032010104202MMOLEU.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>The Date of the UK General Election?</title>
<pubDate>Fri, 26 Feb 2010 07:22:12 +0100</pubDate>
<description>
<![CDATA[ 
All the indicators discussed so far point to May 6. Here's another one: local school around here that are used as polling stations are now being booked out for that date. ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/26022010072212MMOANG.htm</link>
<category>NotLotusNotes</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/26022010072212MMOANG.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/26022010072212MMOANG.htm</guid>
<content:encoded><![CDATA[ All the indicators discussed so far point to May 6. &nbsp;Here's another one: local school around here that are used as polling stations are now being booked out for that date. <br /> <br />  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/26022010072212MMOANG.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/26022010072212MMOANG.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Uploading session slides to Ben Langhinrich&#8217;s Lotusphere Sessions database</title>
<pubDate>Thu, 25 Feb 2010 15:04:23 +0100</pubDate>
<description>
<![CDATA[ 
Each year when I get back from the 'Sphere I've downloaded the slide decks from LSOnline and then uploaded them to Ben Langhinrich's venerable sessions database. Then you have the slides in context ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25022010150423MMOKPB.htm</link>
<category>Lotusphere</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25022010150423MMOKPB.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25022010150423MMOKPB.htm</guid>
<content:encoded><![CDATA[ Each year when I get back from the 'Sphere I've downloaded the slide decks from LSOnline and then uploaded them to Ben Langhinrich's venerable sessions database. &nbsp; Then you have the slides in context of the session abstract, speakers, etc, which makes them actually useful. <br /> <br /> It occurred to me that you might like to do this too, or even that Ben might care to add the functionality himself. &nbsp; Here's how to do it: <br />  <br /><strong>1. &nbsp;Download the slides (and other materials).</strong><strong> </strong> <br />For this year, if you've not done it already, you're a bit late to do it now. &nbsp;However, if you have downloaded some or all of them, or found them at the speakers blogs, you can still do this. &nbsp;Make sure that all filenames start with the session number (such as AD122.pdf, or AD112Files.zip). <br /> Put all the files in the same directory on your harddrive/thumbdrive/whereever. &nbsp; <br /> <br /> <strong>2. Open the database in Designer, and go to the Forms.</strong><strong> </strong><br /> You'll find two copies of the form aliased JournalEntry, one Notes client, one web. &nbsp;Edit these, and find the field called Resources. &nbsp;Go to the HideWhen for this field, and remove the checks on Hide Paragraph from NotesR4.6 or later and also from Web Browsers. <br /> <br /> <strong>3. Create a new Actions Menu/Run Once agent. &nbsp;</strong><strong> </strong><br /> I called mine Load Session Slides, you can call yours anything you like. &nbsp;The code is in an attachment on my downloads page. <br /> Change the marked literal for the location of your downloaded material. <br /> Save the agent <br /> <br /> <strong>4. Run it. </strong><br /> Once it's run, you'll see that the database views (try the SessionID view) will show an arrow next to the speaker name. &nbsp;That indicates that there are attached resouces for that session. <br /> <br /> If they aren't there, check the document properties. &nbsp;Is there anything in field Resources? &nbsp;Is the field HasResourceLink got the value "Yes"? &nbsp; <br /> Run the agent with the debugger. &nbsp;See anything I've missed? <br /> <br /> As ever, it works for me. &nbsp;YMMV, and of course it's always possible that in next year's session database, Ben has changed something that prevents the agent from working.   ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/25022010150423MMOKPB.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25022010150423MMOKPB.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>UK Post Office still failing. </title>
<pubDate>Tue, 23 Feb 2010 11:41:19 +0100</pubDate>
<description>
<![CDATA[ 
So far today, the package hasn't arrived: we watched the postman drive away without delivering anything a bit after 9:00, so clearly the complaints department aren't linked to the Aylesbury delivery o ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/23022010114119MMOFQE.htm</link>
<category></category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/23022010114119MMOFQE.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/23022010114119MMOFQE.htm</guid>
<content:encoded><![CDATA[ So far today, the package hasn't arrived: we watched the postman drive away without delivering anything a bit after 9:00, so clearly the complaints department aren't linked to the Aylesbury delivery office very well. &nbsp; <br /> <br /> Called them again, and they really didn't seem to have any idea what was going on. Said that they'd get on to the delivery office in Aylesbury. &nbsp; So far, no package.  <br /> <br /><strong>Update: </strong>the called me mid-morning yesterday to say that it would be delivered between 3 and 3:30. &nbsp;It arrived at 3:15. &nbsp;Contrary to the card, I didn't have to sign for it. &nbsp;Come on guys, you really need to be able to do better than this. &nbsp;  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/23022010114119MMOFQE.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/23022010114119MMOFQE.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>UK Post Office still losing its way</title>
<pubDate>Mon, 22 Feb 2010 16:41:03 +0100</pubDate>
<description>
<![CDATA[ 
Just like last time, the UK Post Office excels at customer service. Another package from the US, with customs duty to pay, so they leave a card in the door Saturday. No item number on it, by the wa ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/22022010164103MMOMKQ.htm</link>
<category></category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/22022010164103MMOMKQ.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/22022010164103MMOMKQ.htm</guid>
<content:encoded><![CDATA[ Just like <a href=http://www.mickmoignard.com/MickMoignard/mickmoignard.nsf/dx/11092009111354MMODZR.htm><span style="text-decoration:underline">last time, </span></a>the UK Post Office excels at customer service. &nbsp;Another package from the US, with &nbsp;customs duty to pay, so they leave a card in the door Saturday. &nbsp;No item number on it, by the way, but directions to a web site (www.royalmail.com/fee2pay) to pay the charge. <br /> <br /> This website is pretty casual; it allows you to pay for the item without quoting a reference number for it - which I didn't have. &nbsp;You fill in all the details based on your postcode, and what the card says you have to pay - nothing, apart from the card, to correlate item to payment. &nbsp; The card also tells you that you can use this website to request re-delivery as you pay the charge. &nbsp;Well, you can't, directly. &nbsp;You have to go back to the homepage and start all over again, identifying yourself, postcode, and so on with information from the card, again. <br /> <br /> Anyway, I specifically requested that the package be delivered on Tuesday, because someone would be at home. &nbsp;Not Monday, Tuesday. &nbsp;Yes, they tried today, Monday. &nbsp;Another card through &nbsp;the door - this time, with a package number, sorry you were out, that sort of thing. &nbsp; However, the package number didn't work - their website requires 13 characters, but the number on the card was only 12. &nbsp;And even then, the website required me to complete checkboxes from those marked on the card, but would not actually accept those that were checked on the card! How much of a FAIL is that?<br /> <br /> This time when I rang the number on the card (0845 6112980), one of the choices was complaints. &nbsp;I went for that, and it was answered on the first ring. So I explained the issue, and he said he'd sort it,and arrange delivery tomorrow. &nbsp;I can't check that, of course, because I don't have a tracking number that works. &nbsp;I also reminded him of the last time this went wrong - and to my surprise, he seemed to be aware of it!<br /> <br /> It might be funny, but for the fact that it isn't. &nbsp;Someone needs to bang some heads together, fast, before the whole thing implodes completely - as it certainly appears to be doing. &nbsp;  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/22022010164103MMOMKQ.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/22022010164103MMOMKQ.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Camp 93 will not be at the Watford Finescale Show this weekend.</title>
<pubDate>Mon, 15 Feb 2010 08:54:03 +0100</pubDate>
<description>
<![CDATA[ 
Contrary to the Watford Finescale show organisers web site, Camp 93 will not be appearing. We were approached by them verbally to show the layout, but even after several phone calls (where the word ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/15022010085400MMOCFT.htm</link>
<category></category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/15022010085400MMOCFT.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/15022010085400MMOCFT.htm</guid>
<content:encoded><![CDATA[ Contrary to the <a href=http://www.missendenrailwaymodellers.org.uk/Watford_exhibition.html><span style="text-decoration:underline">Watford Finescale show organisers web site</span></a>, <a href=http://www.rdmrc.nildram.co.uk/Camp93.htm><span style="text-decoration:underline">Camp 93</span></a> will not be appearing. <br /> <br /> We were approached by them verbally to show the layout, but even after several phone calls (where the word No didn't seem to be understood), we didn't get a formal invite, nor did we ever get any paperwork to complete the loop. &nbsp;On top of that, it's the same day as our own club's show in <a href=http://www.rdmrc.nildram.co.uk/>Princes Risborough</a>, which is where we will be, but not with Camp 93. &nbsp; <br /> <br /> I hope that this error doesn't affect anyone's enjoyment of the Watford show, but we want you to be sure that the resons for the layout not being there are not ours. &nbsp;For those of you who'd like to see Camp 93 again, we're next out at <a href=http://www.009society.com/diary.php><span style="text-decoration:underline">Sparsholt on 10 April</span></a> (even though the posting there doesn't include us!) and <a href=http://www.crawleymrs.org.uk/_ex_next.htm><span style="text-decoration:underline">Crawley on 17/18 April</span></a>.   ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/15022010085400MMOCFT.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/15022010085400MMOCFT.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Lotus Symphony 3: first look and a pleasant surprise. </title>
<pubDate>Thu, 11 Feb 2010 09:55:23 +0100</pubDate>
<description>
<![CDATA[ 
I'm not a big fan of stand-alone WP programs, as you can see from this Dominopower Article from 2005, but even I'll admit that there are times when you do need such an animal. So I've kept up with wh ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11022010095523MMODN6.htm</link>
<category>Symphony</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11022010095523MMODN6.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11022010095523MMODN6.htm</guid>
<content:encoded><![CDATA[ I'm not a big fan of stand-alone WP programs, as you can see from this <a href=http://www.dominopower.com/issues/issue200506/00001571001.html>Dominopower Article</a> from 2005, but even I'll admit that there are times when you do need such an animal. &nbsp;So I've kept up with what Lotus are doing with Symphony, and downloaded the beta of Symphony 3 a few days ago. <br /> <br />Just now I had cause to use it - a simple task, copy the rich text of a document from Lotus Notes, where I'd authored it, to make a separate tidy document to email to a customer. &nbsp; &nbsp;The usual set of tasks here is Copy from Notes/Paste into Word/Swear at how badly it comes out/Reformat completely in Word/add header/add footer/Save/Email. &nbsp; Actually, more often than not these days I've used the Symphony 1.3 documents as included in Notes 8.5.1, but that's noit an enormous improvement. <br /> <br />This time I used Symphony 3; takes a little longer to start, but after that, I was pleasantly surprised. &nbsp;Copy/Paste/Header/Footer/Done. &nbsp;No drama, no swearing &nbsp; Now, I wasn't stressing it in any shape or form here, this is by no means an extended test, but it was a nice experience. &nbsp; I'm looking forward to Symphony 3 going gold, and being able to update the embedded versions in Notes and not have to have two copies installed. &nbsp;  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/11022010095523MMODN6.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/11022010095523MMODN6.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Lotusphere Session Evals</title>
<pubDate>Mon, 8 Feb 2010 21:05:10 +0100</pubDate>
<description>
<![CDATA[ 
Chris Miller raised the issue of session evals over on his blog. This is something that I also feel quite strongly about, even though I've never presented at Lotusphere (I have done presentations for ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010210509MMOSQT.htm</link>
<category>Lotusphere</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010210509MMOSQT.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010210509MMOSQT.htm</guid>
<content:encoded><![CDATA[ Chris Miller <a href="http://www.idonotes.com/IdoNotes/idonotes.nsf/dx/are-speaker-evals-a-requirement-weapons-htm"><span style="text-decoration:underline">raised the issue</span></a> of session evals over on his blog. &nbsp;This is something that I also feel quite strongly about, even though I've never presented at Lotusphere (I have done presentations for my hobby, and I too look for feedback about how I did, how the subject and material went, and so on). <br /> <br /> I also remember from my old IBM Mainframe days going to G.U.I.D.E conferences around Europe. &nbsp; Here they had a session evaluation system that seemed to work well. &nbsp; What they did, if my mind serves me right, was:  <ul> <li>give out small slips of paper to every person who entered the room. &nbsp;  </li><li>Requested answers to about three questions: Session number/speaker effectiveness/content rating and comments. &nbsp;  </li><li>Collected them at the end of the session  </li><li>And, &nbsp;here's the clincher: they were collated pretty much there and then. &nbsp;Results were available at the end of the conference, because in the closing session they gave away a decent prize to each of the best IBM and non-IBM speakers. </li></ul><br /> Maybe that could be extended to Lotusphere:  <ul> <li>Give out slips at each session. &nbsp; In that way, nobody could complain that the wireless sucked/run out of eval sheets in the conference pad/can't be bothered to log on/whatever.  </li><li>Reduce them to the barest essentials: session title, speaker effectiveness (rate 1-5), content value (1-5), your conference number (in a moment) and space for comments.  </li><li>Calculate a best IBM, and non-IBM speaker, by averaging the ratings per session (in that way, a sparsely attended session can still get &nbsp;a good overall rating), and do it during the conference.  </li><li>In the closing session, give away a decent prize: say iPad, or a Thinkpad, to each of the best speakers. &nbsp;In that way, you generate a little more enthusiasm on the part of each speaker to give of her best, because of the element of competition.  </li><li>And, to encourage the attendees to fill the evals in, give away a prize to an attendee too - say the iPad/Thinkpad, or even a free ticket to next year's 'Sphere. &nbsp;That's why you add your conference number to the session eval slips. &nbsp; </li></ul>&nbsp;  <br />Update: <a href="http://www.idonotes.com/IdoNotes/idonotes.nsf/dx/solving-obtaining-session-evaluation.htm">see another post</a> from Chris, and check the comments, too. &nbsp;Maybe there's some movement here?  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/08022010210509MMOSQT.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010210509MMOSQT.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Blackberry vs Traveler</title>
<pubDate>Mon, 8 Feb 2010 12:01:33 +0100</pubDate>
<description>
<![CDATA[ 
Has anyone seen a comparison of email/calendar/ToDo/Contacts functionality between Blackberry and Lotus Traveler? I'm trying to do a simple comparison for a customer, expecting to be able to find s ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010120132MMOG4Z.htm</link>
<category>Lotus Notes 8.5</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010120132MMOG4Z.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010120132MMOG4Z.htm</guid>
<content:encoded><![CDATA[ Has anyone seen a comparison of email/calendar/ToDo/Contacts functionality between Blackberry and Lotus Traveler? &nbsp; <br /> <br />I'm trying to do a simple comparison for a customer, expecting to be able to find some comparison data, but I can't seem to find any. &nbsp;Anyone come across anything on this one? &nbsp; <br /> <br />Thanks in advance!  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/08022010120132MMOG4Z.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/08022010120132MMOG4Z.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Error in Notes Upgrade to 8.5.1 FP1</title>
<pubDate>Tue, 2 Feb 2010 12:10:13 +0100</pubDate>
<description>
<![CDATA[ 
When I tried to upgrade my Notes client from 8.5.1 to 8.5.1 FP1, I got the error Notes Hotfix did not install. Error encountered when installing Notes Hotfix Core component. The fix for this is qui ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/02022010121012MMOGAG.htm</link>
<category>Lotus Notes 8.5</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/02022010121012MMOGAG.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/02022010121012MMOGAG.htm</guid>
<content:encoded><![CDATA[ When I tried to upgrade my Notes client from 8.5.1 to 8.5.1 FP1, I got the error <br /> <br />Notes Hotfix did not install. &nbsp;Error encountered when installing Notes Hotfix Core component. <br /> <br />The fix for this is quite simple (on Windows, anyway). &nbsp;Go to task manager, and stop the NSD process. &nbsp;Then the install will work just fine. (clearly you have to have Notes itself stopped while the upgrade is done. &nbsp;Upgrade took about 5 minutesm and everything worked as expected afterwards - including all my sidebars. <br /> <br />I expect that you'd also be able to get round the issue by rebooting and installing FP1 before starting Notes. &nbsp;I tend to restart my machine pretty rarely, because Windows takes so long to start. &nbsp;I just suspend it by closing the lid, and continue by opening the lid and signing on again. 30 seconds max. &nbsp;  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/02022010121012MMOGAG.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/02022010121012MMOGAG.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Mick Moignard&#8217;s Digital Topics: Updated</title>
<pubDate>Mon, 25 Jan 2010 22:01:12 +0100</pubDate>
<description>
<![CDATA[ 
I've updated my Scalefour News DCC articles from 2006/7/8, and combined them all into one single PDF. You can find it on my downloads page. update: and the broken link there is now fixed. Feel free ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25012010220111MMOTTT.htm</link>
<category>DCC</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25012010220111MMOTTT.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25012010220111MMOTTT.htm</guid>
<content:encoded><![CDATA[ I've updated my Scalefour News DCC articles from 2006/7/8, and combined them all into one single PDF. &nbsp;You can find it on my <a href=http://www.mickmoignard.com/MickMoignard/mickmoignard.nsf/dx/resources.htm><span style="text-decoration:underline">downloads page.</span></a> update: and the broken link there is now fixed.  <br /><br /> Feel free to disseminate this as you wish, but please pass on the URL, rather than the PDF, as it is always possible that I'll update it again in the future. &nbsp;   ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/25012010220111MMOTTT.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/25012010220111MMOTTT.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Kennedy Space Centre - such a disappointment</title>
<pubDate>Sun, 24 Jan 2010 17:50:22 +0100</pubDate>
<description>
<![CDATA[ 
I went over to the Kennedy Space Centre on Friday after Lotusphere. It was such a disappointment. I've been there quite a few times in the past, and really enjoyed being there, but it the visitor ce ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/24012010175022MMONX2.htm</link>
<category>Lotusphere2010</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/24012010175022MMONX2.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/24012010175022MMONX2.htm</guid>
<content:encoded><![CDATA[ I went over to the Kennedy Space Centre on Friday after Lotusphere. &nbsp;It was such a disappointment. &nbsp;I've been there quite a few times in the past, and really enjoyed being there, but it the visitor centre, at least, is now just another Florida theme park. &nbsp;There's no longer any serious discussion of the science, or of the value to humankind of the US space program. &nbsp;All there is now is cheap displays - Early Space &nbsp;Exploration, for one; snack bars - I count 5, as well as the main cafe, &nbsp;the Rocket Park is now very poorly explained, children's play areas, and even a theme part simulator ride. &nbsp;I will say that I didn't go into the Nature and Technology building, nor did I do the bus ride to the outstation exhibits, because I didn't have time (I have been to them before). It seems that the only serious pieces of the place left are the Launch Status centre - but nothing there as there isn't a current mission, and the Astronaut memorial stone, which was closed - I assumed for cleaning , as there was a guy on a cherrypicker round the back of it, but no apology for it. <br /> <br />When I first visited, way back in '95 or '96, the place absolutely oozed the<a href=http://en.wikipedia.org/wiki/The_Right_Stuff_%28book%29> Right Stuff</a>. &nbsp; It doesn't any more, and I think it, and the presentation of NASA's space program, are greatly diminished by it. &nbsp; &nbsp;A great pity. &nbsp;  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/24012010175022MMONX2.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/24012010175022MMONX2.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>&#64;Round XPage/JavaScript bug?</title>
<pubDate>Fri, 20 Nov 2009 10:17:10 +0100</pubDate>
<description>
<![CDATA[ 
It seems that there's a sporadic fault in the @Round function in Xpages SSJS. I have a piece of code that calculates a number and is supposed to display the value, rounded to two decimal places in ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/20112009101710MMOE3T.htm</link>
<category>xpages</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/20112009101710MMOE3T.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/20112009101710MMOE3T.htm</guid>
<content:encoded><![CDATA[  <table width=100%> <tr valign=top> <td width=100%>It seems that there's a sporadic fault in the @Round function in Xpages SSJS. &nbsp;I have a piece of code that calculates a number and is supposed to display the value, rounded to two decimal places in a tooltip on the page. &nbsp;We rounded the number with @Round(value,0.01), and it worked just fine in testing - rounded all the values we threw at it as expected. &nbsp;But our customer reported sporadic incidents where the rounding clearly wasn't working. &nbsp;So I did some digging - and here's what I found. <br /> <br /> The calculated number to be rounded to 2DP was 26.811000000000003 &nbsp;(that's 11 zeros). &nbsp; &nbsp; That's a value I found generated the issue in testing - there are other values we've seen reported that don't round properly, and all of them have a long string of zeros before a non-zero digit at the right end. <br /> <br /> Some quick testing showed me that  <ul> <li>@Round(value,0.1) gives 26.8. Correct.  </li><li>@Round(value,0.001) gives 26.811. Also correct.  </li><li>@Round(value,0.01) gives 26.810000000000002 (12 zeros). &nbsp;Not correct - though it has managed to alter the value, and has the first two DPs correct.</li></ul><br /> Some Googling suggested that @Round has been under suspicion before. &nbsp; &nbsp; eOffice's blog has a <a href="http://www.domino-weblog.nl/weblogs/domblog.nsf/d6plinks/Human_Readable_Dates_XPages_851"><span style="text-decoration:underline">post describing using Math.Round</span></a> instead of @Round for some other purpose. &nbsp; But Math.Round rounds at the decimal point only. &nbsp; <a href="http://www.youatnotes.de/web/youatnotes/wiki-xpages.nsf/dx/Work_with_numbers__math"><span style="text-decoration:underline">Julian Buss</span></a> though showed how to move the rounding point about - so simple! &nbsp;And that gave me the idea for the workround I used, which just moves the effective digit that @Round works at to somewhere where it appears to work. &nbsp; <br /> <br /> My workround was this: @Round(value*100,1)/100: which works fine - or at least it does for &nbsp;26.811000000000003. &nbsp;But rounding to two decimal places is probably the commonest use of rounding, so the fact that there's an issue here is really is a bit of a worry. </table> <br /> <br />  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/20112009101710MMOE3T.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/20112009101710MMOE3T.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Too Many MX records?</title>
<pubDate>Fri, 13 Nov 2009 08:59:50 +0100</pubDate>
<description>
<![CDATA[ 
One of my customers has his Domino 7.0.4FP1 server pointed to messagelabs for outbound mail routing. He gets a lot of transient routing failures (not always the same host): Router: No messages tr ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/13112009085948MMOCKG.htm</link>
<category>LotusNotes. MX</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/13112009085948MMOCKG.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/13112009085948MMOCKG.htm</guid>
<content:encoded><![CDATA[ One of my customers has his Domino 7.0.4FP1 server pointed to messagelabs for outbound mail &nbsp;routing. &nbsp;He gets a lot of transient &nbsp;routing failures (not always the same host): <br />&nbsp; <br />Router: No messages transferred to CLUSTER8OUT.EU.MESSAGELABS.COM (host mail195.MESSAGE) via SMTP: The remote server is not a known TCP/IP host.  <br /> <br />Note that the host name in the error report is truncated. &nbsp;Digging and diagnosis tells us that in the in the DNS, that domain has MX records for 11 hosts, all with a preference of 10. &nbsp;Which means that Domino picks one of these at random - or, more probably, cycles round the list. &nbsp;But it appears that the list that it stores gets truncated somewhere, so every so often - about 10% of the time, in fact, the message route fails and it tries again with another server. &nbsp; <br /> <br />This annoys my customer - he dislikes seeing errors in his server log that he can't resolve - and doesn't want to ignore it or just to filter it out. &nbsp;Anyone seen this one before. Got any ideas? &nbsp; <br /> <br />Here's what I get from an MX query to dsn4.messagelabs.com for cluster8out.eu.messagelabs.com.  <br /> <br />> cluster8.eu.messagelabs.com <br />Server: &nbsp;dns4.messagelabs.com <br />Address: &nbsp;216.82.242.229 <br /> <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail205.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail206.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail178.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail179.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail186.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail188.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail189.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail193.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail194.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail195.messagelabs.com <br />cluster8.eu.messagelabs.com &nbsp; &nbsp; MX preference = 10, mail exchanger = mail204.messagelabs.com <br />>  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/13112009085948MMOCKG.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/13112009085948MMOCKG.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami</title>
<pubDate>Tue, 10 Nov 2009 15:56:03 +0100</pubDate>
<description>
<![CDATA[ 
My RGS Goose #2 was acquired years ago, slightly damaged - it looked as though it had been dropped nose down, and was missing the pilot and one set of front wheels - which also meant that I got it for ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm</link>
<category>DCC</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm</guid>
<content:encoded><![CDATA[ My RGS Goose #2 was acquired years ago, slightly damaged - it looked as though it had been dropped nose down, and was missing the pilot and one set of front wheels - which also meant that I got it for a very decent price. &nbsp;I don't actually know whether it was a Lambert or a Balboa - but it does - did - have a Sugiyama makers plate attached to the chassis. &nbsp;I'd tidied it up with some new N-scale spoked wheels in the front truck - they looked OK but nothing special, and a new pilot and snowplow, and so on. &nbsp;Over the years I'd had several attempts to make it run properly. &nbsp;Early on I had the split gear issue on one of the drive axles - which lead to a new motor truck. &nbsp;Then that had its motor replaced with a 5-pole Mashima, but it was still very noisy, and with the brass wheels, prone to pickup issues if it hadn't been used for a while. &nbsp;It moved from a <a href="http://www.digitrax.com" title="Digitrax">Digitrax</a> DZ121 &nbsp;decoder to a DZ123, and then to a Lenz Mini-Gold and Power-1 combo - which neither made much difference to the poor pickup, &nbsp;nor any change at all to the noise. <br /> <br /> But in an idle conversation with Mark Kasprowicz, repowering brass Geese with Con-Cor chassis was mentioned. &nbsp;I wondered if I one could be squeezed into my #2 - and follow it up with some proper sound, given that the mechanical issues would then be solved. &nbsp;I figured that it would fit nicely, with the flywheel in the rear box extension of the body, and powered truck in exactly the same place as the original. &nbsp;And I found that this isn't a difficult conversion either - the frame modifications and adding new mountings inside the rear box is a one-evening project. &nbsp; <br /> <br /> First, take the donor goose frame apart. &nbsp;Pull it out from the box body, unscrew the little PCB at the front and unclip the wires from that from the circuit board. &nbsp; &nbsp;Then unclip all the rest of the wires from the circuit board, take out the two screws, and remove it. &nbsp;Unscrew and remove the rear truck, then unclip the motor and the powered truck - you'll need to assist the clips on the top of the powered tuck a little. Unscrew the plastic motor clip, and carefully pull off the two steps and the brake gear rods from the underside - and you should now have the bare frame. &nbsp; &nbsp;Your modifications are limited to the Con-Cor frame, and to the #2 goose body. &nbsp; <br /> <br /> First, cut off the lug from the front of the Con-Cor frame and file that smooth. &nbsp;Then file off all the body attachment lugs from the sides of the frame, and make that smooth too - take a little care here, because firstly you'll need to put a square against the frame side, and secondly without doing this, the frame won't fit the #2 body. &nbsp; Next, mark a line exactly 32mm from the rear end of the frame - and then cut off the rear of the frame and file carefully and squarely back to that line. &nbsp; Clip the motor back into the mounting bracket, and place that on the frame. You should have around 1mm of frame behind the flywheel. &nbsp; <br /> <br /> Next, cut the two rear corners out of the frame. &nbsp;My cutouts were 9mm front to back and 5.5mm width, leaving a tongue at the rear just under 14mm wide, that slotted nicely into the rear box of the #2 goose body. &nbsp; Finally, file off the two frame member castings that run down the underside of the frame flush with the flat floor area under the motor area. &nbsp;Don't file off the dome in the middle of that area where the motor clip screws in - otherwise you'll have to glue the motor clip back on to the frame. &nbsp; <br /> <br /> Now is the time to strip the #2 goose - you need to get everything off the box body including any weights. &nbsp; You should find that the cut-down frame will fit into the box body, but it will stick out too far downwards. &nbsp;We now need to get it further up into the box, so that the flat floor of the underside of the motor area is around 0.5mm further into the box than the bottom of the box. &nbsp; <br /> <br /> I had hoped that just filing off the top of the rear tongue would work, so I set onto that, and filed that rear tongue down till it was about 1mm think. &nbsp;But that wasn't enough, so I still had to move the interior mounting plate in the rear box bumpout. &nbsp; I found that if I grabbed it with pliers and twisted it, it came out easily. &nbsp; You need to file around 2mm off the front face of this piece, so that the new frame and motor clip can fit into the body properly. &nbsp; Now, &nbsp;you need to get the rear plate back into the body. If you don't file the rear platform area off the frame, it needs to be about 2mm further up inside the body. &nbsp;Put it into the space, and gently push the frame into place until it's just inside flush with the bottom of the body. &nbsp;You say you can't get the frame in that far? - you'll need to file off the interior projections of the bottom side door hinges to get it in. &nbsp;Once you can get the frame in place and can see where the rear retaining plate goes, solder it back in its new location and check that it is level. &nbsp;I guess you could also Araldite it in place if you wanted. &nbsp; &nbsp;Just ensure that there are no solder or Araldite fillets around the edge stopping the frame from sitting on it properly. &nbsp; Now drill a #61 hole through the frame rear tongue to match the screw hole that's in the rear mounting plate, and you'll be able to attach the frame to the body at the rear with the original screw. &nbsp; This hole will be about 1.5mm behind the rear of the two holes that originally held the brake mechanism. &nbsp; <br /> <br /> Here's a picture of the revised frame from the underside. &nbsp;You can see where it's been shortened, and the screw holding the rear. <br /> <img  alt="Image:Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm/content/M2?OpenElement" /><br /> <br /> Now you need to make up a front frame bracket. &nbsp;I bent mine up from 15-thou nickel silver, about 5mm wide. &nbsp;I drilled a hole (#67, if I remember) in the middle of this strip, close to one edge, and tapped it to take one of the old Goose mounting screws. &nbsp;The hole needs to be close to one edge so that the frame, when the motor is attached, can be got past the bracket. &nbsp; Then I bent up the ends so that the final U-shaped bracket fitted closely inside the body - with the two vertical horns of the U being about 5mm long. &nbsp;I then screwed it to the existing ready-tapped front hole on the frame, but with the screw in from the underside. &nbsp; &nbsp;I removed a little of the frame crosspiece by the screw hole so that the screw would nestle down to the frame properly. &nbsp; <br /> <br /> Now, with that front bracket attached to the frame, &nbsp;shove the whole lot into the body, add the rear screw, and level the frame inside the body so that it all fits straight and level. &nbsp;Carefully remove the two screws and the frame, leaving the front bracket in place. Did I tell you to tin the two upturned ends of the front bracket first? &nbsp;Well, I should have done. &nbsp;Solder it in place. &nbsp;Chances are, that like me, you'll have to take two or three goes at this to get it all in place properly. &nbsp;Put the frame back in and check it's all OK. &nbsp;Now put the motor clip back on the frame and check that it still fits OK. If not, you'll need to remove a bit more metal from the front edge of the rear mounting plate in the body. &nbsp; Here's an inside picture that shows this internal bracket: <br /> <img  alt="Image:Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm/content/M3?OpenElement" /><br /> You can also see the front weight, the speaker and the MicroTsunami's capacitor. <br /> <br /> <br /> That's the difficult bits done. &nbsp; What I did next was wash the frame and the body, dried them, and then reassembled the frame - screw on the motor clip, clip in the motor, put the power truck back in, threading the pickup wires carefully through the holes in the frame. &nbsp; &nbsp;For DC, then just connect the motor and pickup wires together, though I added plugs and sockets on mine so that I can remove the truck and decoder without unsoldering. &nbsp; &nbsp;Put the frame back in the box - flywheel first, and noting that it will be a close fit against the front bracket you added, and give it a test - and basically, that's it. &nbsp;Except that you'll need a spacer of about 2mm between the front frame mounting in the rear box and the rear of the front frame, &nbsp; <br /> <br /> What I then did to finish it off was this. &nbsp; &nbsp;I dismantled the new frame again, and painted it. &nbsp; While that dried, &nbsp;I took the original box body weight and filed a corner off so that it would fit onto the front wall of the box, over the original front mount bracket - and attached it with double-sided tape. &nbsp;I put a 3/4 inch round speaker into a <a href="http://www.soundtraxx.com" title="Soundtraxx">Soundtraxx</a> speaker box, and added that to the end of 2-inches of speaker leads off the Goose MicroTsunami. &nbsp;I shortened the red and black leads and added mini-sockets to them to plug into the mini-plugs I'd added to the truck leads, and I added the orange and grey to the motor. &nbsp; A small piece of double-side tape went on the back of the speaker box, then, once I'd reassembled the frame again, &nbsp;I wriggled the whole lot into the box, with the speaker stuck to the weight - check the photo above. &nbsp; I didn't add lights to my goose, so I cut the white and yellow light wires off short. &nbsp; Here's a picture of the revised mechanism, showing the plugs in the pickup leads. &nbsp; <br /> <img  alt="Image:Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm/content/M4?OpenElement" /><br /> <br /> I decided that I would also add the Con-Cor front truck to replace the original, given that it had those nasty N-scale wheels in it - not that overly-wide the Con-Cor wheels aren't also rather nasty, &nbsp; If yours still has the original wheels you'll probably stick with it - but what I did was file about 1mm off the bottom of the centre piece of the Con-Cor truck, and then mounted it on the original peg, with the spring above it and a washer and the spring washer below it. &nbsp;And here's a pic of the assembled goose showing the Con-cor truck. &nbsp; All I then needed to do was program the decoder, and that was it. &nbsp; <br /> <img  alt="Image:Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm/content/M5?OpenElement" /><br /> <br /> Since taking the photos above I've turned the wheels down a bit. &nbsp;The Con-Cor flanges are to RP25, but for standard gauge - which is also why the wheel treads are so wide. &nbsp;I found that turning the flanges down so that they drop into the HOn3 NMRA gauge not only makes the wheels look better but it also stops issues with the flanges bottoming on spikes on small rail sections - 55 and 40 particularly, and that reduces further any chances of dropouts. &nbsp;Here's a photo of the whole thing, after doing the wheels - compate the front truck to the photo above: <br /> <img  alt="Image:Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm/content/M6?OpenElement" /><br /> And here's a closeup of the rear truck after doing the wheels. &nbsp;I blackened the front truck wheels, but I polished the rear truck treads and then left then clean do as not to affect the pickup. &nbsp; <br /> <img  alt="Image:Re-powering a Balboa Goose with A Con-Cor frame and MicroTsunami" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm/content/M7?OpenElement" /><br /> <br /> And how goes it go now? &nbsp; &nbsp;Mechanically, like all Con-Cor geese, it's practically silent - above about step 60 you can hear the motor whine, but at more normal speeds, nothing. &nbsp; <br /> <br /> Programming-wise, what I've done is this. &nbsp;I set CV3 to 25 for slow acceleration. CV61 set to 255 (-127 with DecoderPro), coupled with CV4 at 135, means that it coasts nicely with the throttle closed, and stops on the brakes when F11 is pressed. &nbsp;I set the engine to start on step 1, and then set up a custom speed table that actually prevents the thing moving on step 1 - so I tweak the throttle onto to step 1 to start the engine - but the goose doesn't yet move. &nbsp;On my <a href="http://www.digitrax.com" title="Digitrax">Digitrax</a> system, I have the emergency stop set to local, and pressing that stops the engine. &nbsp;CV212 is set to 80 to calm the back-emf down a bit, and then I played with volume levels, the equalizer and the reverb until I was happy. &nbsp;Finally I set the master volume to 50 which is about right for a home layout. &nbsp; &nbsp;Though of course over the coming weeks I may play around with these settings a bit. &nbsp;   ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/10112009155603MMOLPL.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/10112009155603MMOLPL.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>Notes 8.5.1: solves one tiny little niggle</title>
<pubDate>Wed, 21 Oct 2009 19:06:46 +0100</pubDate>
<description>
<![CDATA[ 
I've always been a big fan of the Notes RT editor, and also of using keystrokes rather than smarticons and the properties box to edit text attributes. One I tend to use a lot, or did, were F8 - para i ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/21102009190646MMOP9B.htm</link>
<category>Lotus Notes 8.5</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/21102009190646MMOP9B.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/21102009190646MMOP9B.htm</guid>
<content:encoded><![CDATA[ I've always been a big fan of the Notes RT editor, and also of using keystrokes rather than smarticons and the properties box to edit text attributes. One I tend to use a lot, or did, were F8 - para indent and F7 - 1st line indent, a lot. &nbsp;In Notes 8.5, F7 and Ctrl-F7 were broken - they worked the same as F8/Ctrl-F8, and that was a real pain. <br /> <br />Notes 8.5.1 - F7 in the RT editor now works properly again. &nbsp;Thanks.   ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/21102009190646MMOP9B.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/21102009190646MMOP9B.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>For once, getting something you pay for. Almost.</title>
<pubDate>Mon, 12 Oct 2009 09:04:28 +0100</pubDate>
<description>
<![CDATA[ 
My broadband supplier, BT, tells me that I should get 5mbits/sec download speed. And for a while, downloading Notes 8.5.1 it pretty much delivers, even out here in fairly rural Buckinghamshire. 490 ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009090428MMOBGU.htm</link>
<category>Broadband</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009090428MMOBGU.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009090428MMOBGU.htm</guid>
<content:encoded><![CDATA[ My broadband supplier, BT, tells me that I should get 5mbits/sec download speed. &nbsp;And for a while, downloading Notes 8.5.1 it pretty much delivers, even out here in fairly rural Buckinghamshire. &nbsp; 490k/sec seems pretty reasonable. <br /> <br /><img  alt="Image:For once, getting something you pay for. Almost." border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009090428MMOBGU.htm/content/M2?OpenElement" /> <br /> <br />But it doesn't last:  <br /> <br /><img  alt="Image:For once, getting something you pay for. Almost." border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009090428MMOBGU.htm/content/M3?OpenElement" /> <br /> <br />Hmm. &nbsp; <br />  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/12102009090428MMOBGU.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009090428MMOBGU.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>8.5.1. Me Too</title>
<pubDate>Mon, 12 Oct 2009 08:47:22 +0100</pubDate>
<description>
<![CDATA[ 
:: Abstract not available ::
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009084721MMOB67.htm</link>
<category>Lotus Notes 8.5</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009084721MMOB67.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009084721MMOB67.htm</guid>
<content:encoded><![CDATA[ <img  alt="Image:8.5.1. Me Too" border="0" src="http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009084721MMOB67.htm/content/M2?OpenElement" />  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/12102009084721MMOB67.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/12102009084721MMOB67.htm?opendocument&amp;comments</wfw:comment>
</item>
<item>
<title>UKLUG starts tomorrow</title>
<pubDate>Wed, 7 Oct 2009 20:06:49 +0100</pubDate>
<description>
<![CDATA[ 
What with the announcement of 8.5.1,and GA on Monday, Bob Picciano and Ron Sebastian doing the keynote, and all the other great speakers coming, it's the place to be for the next two days. I'm just s ...
 ]]>
</description>
<link>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/07102009200649MMOQET.htm</link>
<category>UKLUG</category>
<dc:creator>Mick Moignard</dc:creator>
<comments>http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/07102009200649MMOQET.htm?opendocument&amp;comments</comments>
<guid isPermaLink="true">http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/07102009200649MMOQET.htm</guid>
<content:encoded><![CDATA[ What with the announcement of 8.5.1,and GA on Monday, Bob Picciano and Ron Sebastian doing the keynote, and all the other great speakers coming, it's the place to be for the next two days. &nbsp;I'm just sorry that I can't make it, and I'm envious of those who &nbsp;are going to be there. &nbsp;Have a good one.  ]]></content:encoded>
<wfw:commentRss> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dxcomments/07102009200649MMOQET.htm</wfw:commentRss>
<wfw:comment> http://www.mickmoignard.com/mickmoignard/mickmoignard.nsf/dx/07102009200649MMOQET.htm?opendocument&amp;comments</wfw:comment>
</item>
</channel></rss>
