<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Beluga Consultancy</title>
        <link>http://geekswithblogs.net/BelugaNeil/Default.aspx</link>
        <description> </description>
        <language>en-GB</language>
        <copyright>BelugaNeil</copyright>
        <managingEditor>NeilBlakemore@gmail.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <image>
            <title>Beluga Consultancy</title>
            <url>http://geekswithblogs.net/images/RSS2Image.gif</url>
            <link>http://geekswithblogs.net/BelugaNeil/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>Setting App.Config attributes at Design Time in C#</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/03/01/setting-app.config-attributes-at-design-time-in-c.aspx</link>
            <description>&lt;p&gt;The App.Config file can be created by changing the Project, Properties..., Settings.&lt;/p&gt;
&lt;p&gt;Sometimes the App.Config file seems to bear no resemblance to what is in the settings.&lt;/p&gt;
&lt;p&gt;Deleting the App.Config file and adding an empty one does not cause the settings to disappear nor does the App.Config file get automatically regenerated.&lt;/p&gt;
&lt;p&gt;To regenerate the App.Config file from the settings one of the settings needs to be changed and the project then needs to be rebuilt.&lt;/p&gt;
&lt;p&gt;The best approach I have found is to:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Delete App.Config&lt;/li&gt;
    &lt;li&gt;Add New App.config&lt;/li&gt;
    &lt;li&gt;Go to Project, Properties..., Settings and change one setting&lt;/li&gt;
    &lt;li&gt;Rebuild project&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Project will now have an App.Config file which reflects the Project, Properties..., Settings&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;A good post on Settings is &lt;a href="../../../../akraus1/articles/64871.aspx"&gt;http://geekswithblogs.net/akraus1/articles/64871.aspx&lt;/a&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/138255.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/03/01/setting-app.config-attributes-at-design-time-in-c.aspx</guid>
            <pubDate>Mon, 01 Mar 2010 19:26:14 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/138255.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/03/01/setting-app.config-attributes-at-design-time-in-c.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/138255.aspx</wfw:commentRss>
        </item>
        <item>
            <title>.NET DEVELOPMENT WITH ODAC 11.1.0.7.20</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/02/18/.net-development-with-odac-11.1.0.7.20.aspx</link>
            <description>&lt;p&gt;&lt;br /&gt;
&lt;br /&gt;
I've installed .NET DEVELOPMENT WITH ODAC 11.1.0.7.20 and apart from having to reboot my machine once it looks very good.&lt;br /&gt;
&lt;br /&gt;
I can use a sophisticated set of tools to look at an Oracle database.&lt;br /&gt;
&lt;br /&gt;
Works in VS2008 but doesn't recognise VS2010&lt;br /&gt;
&lt;br /&gt;
http://www.oracle.com/technology/tech/dotnet/col/odac_11.1.0.7.20_data_sheet.pdf&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/138038.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/02/18/.net-development-with-odac-11.1.0.7.20.aspx</guid>
            <pubDate>Thu, 18 Feb 2010 21:05:40 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/138038.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/02/18/.net-development-with-odac-11.1.0.7.20.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/138038.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Setting App.Config attributes at Run-time in C#</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/02/12/setting-app.config-attributes-at-run-time-in-c.aspx</link>
            <description>&lt;p&gt;Manipulating app.config attributes at run time in C# appears to be simple. However most of the samples I've looked at don't work or are impenetrable.&lt;/p&gt;
&lt;p&gt;Simply in app.config file at design time add some userSettings either manually or through the design window&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;   &amp;lt;userSettings&amp;gt;&lt;br /&gt;
        &amp;lt;WindowsFormsApplication1.Properties.Settings&amp;gt;&lt;br /&gt;
            &amp;lt;setting name="MyMachine" serializeAs="String"&amp;gt;&lt;br /&gt;
                &amp;lt;value&amp;gt;zaxcc1Machine&amp;lt;/value&amp;gt;&lt;br /&gt;
            &amp;lt;/setting&amp;gt;&lt;br /&gt;
            &amp;lt;setting name="MyMessage" serializeAs="String"&amp;gt;&lt;br /&gt;
                &amp;lt;value&amp;gt;Helpme&amp;lt;/value&amp;gt;&lt;br /&gt;
            &amp;lt;/setting&amp;gt;&lt;br /&gt;
            &amp;lt;setting name="MySubText" serializeAs="String"&amp;gt;&lt;br /&gt;
                &amp;lt;value&amp;gt;Imintrouble &amp;lt;/value&amp;gt;&lt;br /&gt;
            &amp;lt;/setting&amp;gt;&lt;br /&gt;
        &amp;lt;/WindowsFormsApplication1.Properties.Settings&amp;gt;&lt;br /&gt;
    &amp;lt;/userSettings&amp;gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Then use these values by using &lt;strong&gt;Properties.Settings.Default&lt;/strong&gt; object. &lt;strong&gt;Note this must be prefixed by the application name&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;//Using app.config settings&lt;br /&gt;
txtIPMachine.Text=&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.MyMachine;&lt;br /&gt;
txtMessage.Text=&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.MyMessage;&lt;br /&gt;
txtSubtext.Text=&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.MySubText;&lt;br /&gt;
&lt;br /&gt;
 &lt;/p&gt;
&lt;p&gt;To change these settings make assignments to them &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.MyMachine=txtIPMachine.Text;&lt;br /&gt;
&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.MyMessage=txtMessage.Text;&lt;br /&gt;
&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.MySubText=txtSubtext.Text;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;However to persist these changes which will change the associated .exe.config file another statement is required:&lt;/p&gt;
&lt;p&gt;//Now persist these changes&lt;br /&gt;
&lt;strong&gt;WindowsFormsApplication1.&lt;/strong&gt;Properties.Settings.Default.Save();&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Only UserSetting (as opposed to AppSetting) changes are persistable at runtime.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Now that all looks really promising except that it doesn't actually put the persisted user settings in the appname.exe.config. Instead it puts these in a hidden file for the user in their documents and settings (something like this)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;C:\Documents and Settings\FredBloggs\Local Settings\Application Data\Company\MyApp.exe_Url_ywmpcb12duakrunjye5nrdb4hhsecogv\1.2.0.7&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The file is always called user.config&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This will contain the xml for user settings from above and could be manually altered and will be read in at startup but it's clearly designed not to be. It's obviously also designed to allow different users to have different persisted settings.&lt;/p&gt;
&lt;p&gt;   &amp;lt;userSettings&amp;gt;&lt;br /&gt;
        &amp;lt;WindowsFormsApplication1.Properties.Settings&amp;gt;&lt;br /&gt;
            &amp;lt;setting name="MyMachine" serializeAs="String"&amp;gt;&lt;br /&gt;
                &amp;lt;value&amp;gt;zaxcc1Machine&amp;lt;/value&amp;gt;&lt;br /&gt;
            &amp;lt;/setting&amp;gt;&lt;br /&gt;
            &amp;lt;setting name="MyMessage" serializeAs="String"&amp;gt;&lt;br /&gt;
                &amp;lt;value&amp;gt;Helpme&amp;lt;/value&amp;gt;&lt;br /&gt;
            &amp;lt;/setting&amp;gt;&lt;br /&gt;
            &amp;lt;setting name="MySubText" serializeAs="String"&amp;gt;&lt;br /&gt;
                &amp;lt;value&amp;gt;Imintrouble &amp;lt;/value&amp;gt;&lt;br /&gt;
            &amp;lt;/setting&amp;gt;&lt;br /&gt;
        &amp;lt;/WindowsFormsApplication1.Properties.Settings&amp;gt;&lt;br /&gt;
    &amp;lt;/userSettings&amp;gt;&lt;/p&gt;
&lt;p&gt;All I really wanted was a way of persisting some settings when the application is in use and I wanted that in the same folder as the exe. It doesn't really do that but I can live with it.&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137934.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/02/12/setting-app.config-attributes-at-run-time-in-c.aspx</guid>
            <pubDate>Fri, 12 Feb 2010 12:05:30 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137934.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/02/12/setting-app.config-attributes-at-run-time-in-c.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137934.aspx</wfw:commentRss>
        </item>
        <item>
            <title>CSS Stylesheets in ASP.Net</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/02/02/css-stylesheets-in-asp.net.aspx</link>
            <description>&lt;p&gt;I've not done a great deal in ASP.Net and I've never done anything with Style Sheets.&lt;br /&gt;
&lt;br /&gt;
They are however really simple as long as you remember a couple of things.&lt;br /&gt;
&lt;br /&gt;
Create the css file and add it to your project in Visual Studio. Then drag it to the aspx page (in design view). This will add the lines to the aspx page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;head runat="server"&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt;
    &amp;lt;link href="StyleSheet1.css" rel="stylesheet" type="text/css" /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Then when designing the css classes use the wizard by right-clicking in the class and selecting build style:&lt;/p&gt;
&lt;p&gt;

&lt;a target="_blank" title="ImageShack - Image And Video Hosting" href="http://img21.imageshack.us/i/stylesheet.jpg/"&gt;&lt;img src="http://img21.imageshack.us/img21/4990/stylesheet.jpg" border="0" /&gt;&lt;/a&gt;
&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137763.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/02/02/css-stylesheets-in-asp.net.aspx</guid>
            <pubDate>Tue, 02 Feb 2010 21:53:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137763.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/02/02/css-stylesheets-in-asp.net.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137763.aspx</wfw:commentRss>
        </item>
        <item>
            <title>My Videography has moved to another blog</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/01/23/my-videography-has-moved-to-another-blog.aspx</link>
            <description>&lt;p&gt;I've moved all my posts on Videography to my other blog.&lt;/p&gt;
&lt;p&gt;&lt;span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" class="Apple-style-span"&gt;&lt;span style="border-collapse: collapse; font-family: arial,sans-serif; font-size: 13px;" class="Apple-style-span"&gt;&lt;a style="color: rgb(42, 93, 176);" target="_blank" href="http://www.belugaconsultancy.blogspot.com/"&gt;http://www.belugaconsultancy.&lt;wbr&gt;&lt;/wbr&gt;blogspot.com/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" class="Apple-style-span"&gt;&lt;span style="border-collapse: collapse; font-family: arial,sans-serif; font-size: 13px;" class="Apple-style-span"&gt;I'm keeping this for more technical programming blog posts. It's mostly for my own consumption but happy if it helps anyone else.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137595.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/01/23/my-videography-has-moved-to-another-blog.aspx</guid>
            <pubDate>Sat, 23 Jan 2010 06:31:02 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137595.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/01/23/my-videography-has-moved-to-another-blog.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137595.aspx</wfw:commentRss>
        </item>
        <item>
            <title>LinQ to Objects and Gridview in ASP.Net</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/01/23/linq-to-objects-and-gridview-in-asp.net.aspx</link>
            <description>&lt;p&gt;I've gathered some data into an object and then done a Linq to that object using code a bit like this:&lt;/p&gt;
&lt;p&gt;    //Linq query&lt;br /&gt;
     var q = from c in objFlist.Items&lt;br /&gt;
             orderby c.Surname&lt;br /&gt;
             select c;&lt;br /&gt;
&lt;br /&gt;
     List&amp;lt;clsFileInfo&amp;gt; listOfItems = q.ToList&amp;lt;clsFileInfo&amp;gt;();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
      GridView2.DataSource = q;&lt;br /&gt;
      GridView2.DataBind();&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;That works fine as long as I let the Gridview organise itself from the data automatically.&lt;/p&gt;
&lt;p&gt;To make it more polished I wanted to lay out the columns in the Gridview and add template columns etc. To do this I configured the grid (from it's Gridview Tasks box) to have a Linq to objects datasource with my object as the datasource. This then allows me to add and edit columns and organise it as I want. So far so good. But when I try and run it I get this error:&lt;/p&gt;
&lt;p style="margin-left: 40px;"&gt;&lt;em&gt;Both DataSource and DataSourceID are defined on 'GridView2'.  Remove one definition.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I've fixed this by inserting the following lines of code in but it seems there should be a better way.&lt;/p&gt;
&lt;p&gt;      &lt;strong&gt;GridView2.DataSource = null;&lt;br /&gt;
      GridView2.DataSourceID = null;   &lt;/strong&gt;&lt;span style="background-color: rgb(0, 0, 255);"&gt;&lt;br /&gt;
&lt;/span&gt;      GridView2.DataSource = q;&lt;br /&gt;
      GridView2.DataBind();&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137594.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/01/23/linq-to-objects-and-gridview-in-asp.net.aspx</guid>
            <pubDate>Sat, 23 Jan 2010 04:26:04 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137594.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/01/23/linq-to-objects-and-gridview-in-asp.net.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137594.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Videography Nearly Live</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/01/19/videography-nearly-live.aspx</link>
            <description>&lt;p&gt;Using YouTube you can upload files to an email address as an attachment. It is quite simple to do this directly from my Nokia N95.&lt;/p&gt;
&lt;p&gt;I have GMail as my email option in messaging. I can do this in three different ways:&lt;/p&gt;
&lt;p&gt;1.Take the video and then opt for send as a message. After that I choose the YouTube upload email address.&lt;/p&gt;
&lt;p&gt;2.Go to the gallery and choose the send option. Choose YouTube upload address.&lt;/p&gt;
&lt;p&gt;3.Go to message. Choose YouTube upload as recipient. Select Insert, Video clip.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;To avoid huge accidental data bills I am operating my phone offline in Wifi mode during this upload.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;This allows me to use all the features of the phones Video camera and also upload much better quality files...&lt;/p&gt;
&lt;p&gt; The subject matter is not very interesting in this video &lt;img src="http://geekswithblogs.net/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/angry_smile.gif" alt="" /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;object height="344" width="425"&gt;
&lt;param value="http://www.youtube.com/v/KWXveSfSKEI&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;" name="movie" /&gt;
&lt;param value="true" name="allowFullScreen" /&gt;
&lt;param value="always" name="allowscriptaccess" /&gt;&lt;embed height="344" width="425" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/KWXveSfSKEI&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;My Live Output is here&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;object height="550" width="320" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="bplayer"&gt;&lt;embed height="550" width="320" wmode="opaque" allowfullscreen="true" type="application/x-shockwave-flash" src="http://bambuser.com/r/player.swf?username=NeilBlakemore" name="bplayer"&gt;&lt;/embed&gt;
&lt;param value="http://bambuser.com/r/player.swf?username=NeilBlakemore" name="movie" /&gt;
&lt;param value="true" name="allowfullscreen" /&gt;
&lt;param value="opaque" name="wmode" /&gt;&lt;/object&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137550.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/01/19/videography-nearly-live.aspx</guid>
            <pubDate>Tue, 19 Jan 2010 13:34:45 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137550.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/01/19/videography-nearly-live.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137550.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Videography Live and Edited</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/01/19/videography-live-and-edited.aspx</link>
            <description>&lt;p&gt;So as well as having my live Bambuser TV channel I am now playing around with the videos I've streamed and uploading them on YouTube. Everything has been shot with my Nokia N95  I'm downloading the .flv files from Bambuser converting with Emicsoft FLV conterter http://www.emicsoft.com/ to .avi and then just editing a bit with Windows Movie Maker before uploading to YouTube:&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;object height="364" width="445"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/EoKWQUVEXb0&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;color1=0xe1600f&amp;amp;color2=0xfebd01&amp;amp;border=1" /&gt;
&lt;param name="allowFullScreen" value="true" /&gt;
&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed height="364" width="445" src="http://www.youtube.com/v/EoKWQUVEXb0&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;color1=0xe1600f&amp;amp;color2=0xfebd01&amp;amp;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;My Live Output is here&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;object height="550" width="320" id="bplayer" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"&gt;&lt;embed height="550" width="320" name="bplayer" src="http://bambuser.com/r/player.swf?username=NeilBlakemore" type="application/x-shockwave-flash" allowfullscreen="true" wmode="opaque"&gt;&lt;/embed&gt;
&lt;param name="movie" value="http://bambuser.com/r/player.swf?username=NeilBlakemore" /&gt;
&lt;param name="allowfullscreen" value="true" /&gt;
&lt;param name="wmode" value="opaque" /&gt;&lt;/object&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137545.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/01/19/videography-live-and-edited.aspx</guid>
            <pubDate>Tue, 19 Jan 2010 09:19:17 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137545.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/01/19/videography-live-and-edited.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137545.aspx</wfw:commentRss>
        </item>
        <item>
            <title>My Own Live TV Channel</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/01/11/my-own-live-tv-channel.aspx</link>
            <description>&lt;p&gt;I've been playing with streaming live video from my 3G mobile phone which is on the 3 Network in the UK. It's not a very up to date phone. It's a Nokia N95 but it is Wifi enabled.&lt;/p&gt;
&lt;p&gt;So far I've tried two services but and I like Bambuser best. This allows my streamed broadcast to be seen live and then automatically saves it for later viewing.&lt;/p&gt;
&lt;p&gt;Here are some of my sample broadcasts:&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;object height="550" width="320" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="bplayer"&gt;&lt;embed height="550" width="320" wmode="opaque" allowfullscreen="true" type="application/x-shockwave-flash" src="http://bambuser.com/r/player.swf?username=NeilBlakemore" name="bplayer"&gt;&lt;/embed&gt;
&lt;param value="http://bambuser.com/r/player.swf?username=NeilBlakemore" name="movie" /&gt;
&lt;param value="true" name="allowfullscreen" /&gt;
&lt;param value="opaque" name="wmode" /&gt;&lt;/object&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137430.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/01/11/my-own-live-tv-channel.aspx</guid>
            <pubDate>Mon, 11 Jan 2010 08:48:29 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137430.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/01/11/my-own-live-tv-channel.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137430.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Silverlight 4 OOB (Out Of Browser) Application</title>
            <link>http://geekswithblogs.net/BelugaNeil/archive/2010/01/05/silverlight-4-oob-out-of-browser-application.aspx</link>
            <description>&lt;p&gt;I was trying to create and run my first Silverlight OOB (Out of Browser) application. It all seems very simple to set up but then it still runs in a browser. &lt;/p&gt;
&lt;p&gt;I found the solution but it doesn't seem at all obvious to me.&lt;/p&gt;
&lt;p&gt;To set as an OOB application. Choose  &lt;em&gt;Enable running application out of browser&lt;/em&gt; as below.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;a href="http://img683.imageshack.us/i/oob2.jpg/"&gt;&lt;img src="http://img171.imageshack.us/img171/8875/oob1.jpg" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Then click on the button &lt;em&gt;Out-of-browser settings...&lt;/em&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;img src="http://img683.imageshack.us/img683/9194/oob2.jpg" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;I selected bottom two check boxes.&lt;/p&gt;
&lt;p&gt;Now I would have thought I'd click run at design time and I would get my application running in a window. &lt;/p&gt;
&lt;p&gt;No it doesn't do that it runs in a browser!?!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;What you have to do now is right mouse click on the browser window and select from the popup menu:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Install Silverlight Application onto this computer&lt;/em&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://img204.imageshack.us/img204/6587/oob3.jpg"&gt;&lt;img src="http://img204.imageshack.us/img204/6587/oob3.jpg" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;This then allows me to install the App on the Desktop and I can run it from there as I wanted &lt;strong&gt;Out of Browser&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://img52.imageshack.us/img52/8390/oob4.jpg"&gt;&lt;img src="http://img52.imageshack.us/img52/8390/oob4.jpg" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Now all I suppose I need to do is write a useful application.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;img alt="" src="file:///C:/DOCUME~1/Blakemon/LOCALS~1/Temp/moz-screenshot.png" /&gt;&lt;/p&gt; &lt;img src="http://geekswithblogs.net/BelugaNeil/aggbug/137351.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>BelugaNeil</dc:creator>
            <guid>http://geekswithblogs.net/BelugaNeil/archive/2010/01/05/silverlight-4-oob-out-of-browser-application.aspx</guid>
            <pubDate>Tue, 05 Jan 2010 12:01:25 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/BelugaNeil/comments/137351.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/BelugaNeil/archive/2010/01/05/silverlight-4-oob-out-of-browser-application.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/BelugaNeil/comments/commentRss/137351.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>
