<?xml version="1.0" ?><rss version="2.0" xmlns:ec="http://www.eggheadcafe.com"><channel><title>eggheadcafe.com Silverlight / WPF Unanswered Messageboard Posts</title><link>http://www.eggheadcafe.com</link><pubDate>Thu, 06 Jun 2013 07:14:38 GMT</pubDate><description>EggHeadCafe - The .NET developer's portal of choice</description><language>en-us</language><item><title><![CDATA[tool ceation same as photoshop...]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10474097/tool-ceation-same-as-photoshop.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10474097/tool-ceation-same-as-photoshop.aspx]]></link><description><![CDATA[hi, i am using visual studio 2012, am create tools like photoshop same (line ,ellipse,pointer, select,rectangle etc) as give me&nbsp; example and am used to c# wpf windows application ... please anybody help me its very urgent...&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10474097/tool-ceation-same-as-photoshop.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 04 Jun 2013 01:33:16 GMT</pubDate></item><item><title><![CDATA[udp streaming audio to silverlight or wpf]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10474093/udp-streaming-audio-to-silverlight-or-wpf.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10474093/udp-streaming-audio-to-silverlight-or-wpf.aspx]]></link><description><![CDATA[Hello All<br>
</br>
<br>
</br>I need an example how to stream audio from server to <strong>Silverlight</strong> or <strong>wpf</strong> application using <strong>UDP</strong> protocol.<br>
</br>
<br>
</br><br>
</br>
<br>
</br>Regards&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10474093/udp-streaming-audio-to-silverlight-or-wpf.aspx" target="_self">read more</a>]]></description><pubDate>Mon, 03 Jun 2013 10:06:13 GMT</pubDate></item><item><title><![CDATA[How I can calculate two Columns in wpf datagrid i.e cQty * cRate = TotalAmount]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10473710/how-i-can-calculate-two-columns-in-wpf-datagrid-ie-cqty--crate--totalamount.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10473710/how-i-can-calculate-two-columns-in-wpf-datagrid-ie-cqty--crate--totalamount.aspx]]></link><description><![CDATA[Hi All,<br />
<br />
<br />
How to calculate two columns in a WPF-datagrid's columns.<br />
i.e &nbsp; <strong>Qty*Rate=TotalAmount</strong><br />
<br />
<br />
I have three columns colQty, colRate and ColTotal, so I want to calculate colQty * colRate in colTotal. How is it possible.<br />
<br />
<br />
thanks in advance.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10473710/how-i-can-calculate-two-columns-in-wpf-datagrid-ie-cqty--crate--totalamount.aspx" target="_self">read more</a>]]></description><pubDate>Tue, 07 May 2013 08:57:31 GMT</pubDate></item><item><title><![CDATA[Changing Border/Background color while binding the record WPF,MVVM]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10473473/changing-borderbackground-color-while-binding-the-record-wpfmvvm.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10473473/changing-borderbackground-color-while-binding-the-record-wpfmvvm.aspx]]></link><description><![CDATA[<p>Hi all,<br />
i am using MVVM architecture in WPF application, right now its working fine as when i made some changes in the Costcenter cell onlostfocus the bordercolor or background color will get change, like wise the color should get changed while its binding itself when the data is populated in the gris itshould be highlighted. How can i do that any idea? My working code is below.since im very new to this getting struck.</p>
<p >&lt;Style x:Key="costCenterStyle" TargetType="{x:Type igDataPresenter:CellValuePresenter}" BasedOn="{StaticResource isEditableStyle}" &gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Style.Triggers&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;DataTrigger Binding="{Binding Path=DataItem.IsChanged[CostCenter]}" Value="Changed"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Setter Property="Background" Value="LightSalmon"/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/DataTrigger&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;DataTrigger Binding="{Binding Path=DataItem.IsChanged[CostCenter]}" Value="ChangedButNotCommited"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Setter Property="BorderThickness" Value="2"/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Setter Property="BorderBrush" Value="LightSalmon"/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/DataTrigger&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Style.Triggers&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Style&gt;</p>
<p >&nbsp;&lt;igDataPresenter:Field Name="CostCenter" Label="Cost Center"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;igDataPresenter:Field.Settings&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;igDataPresenter:FieldSettings<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CellValuePresenterStyle="{StaticResource costCenterStyle}"/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/igDataPresenter:Field.Settings&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/igDataPresenter:Field&gt;</p>
<p>Thanks<br />
Kannabiran B</p>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10473473/changing-borderbackground-color-while-binding-the-record-wpfmvvm.aspx" target="_self">read more</a>]]></description><pubDate>Wed, 24 Apr 2013 03:15:35 GMT</pubDate></item><item><title><![CDATA[How do i add up data columns to get a running Sum in a Dataset  to show total on input frm]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10472697/how-do-i-add-up-data-columns-to-get-a-running-sum-in-a-dataset--to-show-total-on-input-frm.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10472697/how-do-i-add-up-data-columns-to-get-a-running-sum-in-a-dataset--to-show-total-on-input-frm.aspx]]></link><description><![CDATA[&nbsp;How do i add up data columns to get a running Sum in a Dataset&nbsp;and show total on input form in a textbox <br />
I have all the following column&nbsp;names in the coding area behind &nbsp;in a Class but dont know how to code and calculate a total to show on my input form<br />
<br />
<table width="94" style="width: 71pt; border-collapse: collapse;" border="0" cellspacing="0" cellpadding="0">
    <colgroup><col width="94" style="width: 71pt;"></col> </colgroup>
    <tbody>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; width: 71pt; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">H1SCColumn</span></td>
        </tr>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">H2SCColumn</span></td>
        </tr>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">H3SCColumn</span></td>
        </tr>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">H4SCColumn</span></td>
        </tr>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">H5SCColumn<br />
            <br />
            Thanks David</span></td>
        </tr>
    </tbody>
</table>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10472697/how-do-i-add-up-data-columns-to-get-a-running-sum-in-a-dataset--to-show-total-on-input-frm.aspx" target="_self">read more</a>]]></description><pubDate>Sun, 10 Mar 2013 15:46:21 GMT</pubDate></item><item><title><![CDATA[How to do live streaming a tv channel in my website using silverlight & c# 4.0?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10472125/how-to-do-live-streaming-a-tv-channel-in-my-website-using-silverlight--c-40.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10472125/how-to-do-live-streaming-a-tv-channel-in-my-website-using-silverlight--c-40.aspx]]></link><description><![CDATA[<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">I am going to create a website in asp.net 4.0 using sliverlight,live streaming server. In which I need to display a TV channel live video streaming. How can I make it?</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">Like: http://www.ndtv.com/video/live/channel/ndtv24x7</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">http://ibnlive.in.com/</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">i don't know how to start, how to get sdk or any thing to show the tv channels in my website? where to get permission for showing this tv channel and their encoders and all.</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">i have read several articles about silverlight ,live streaming server.they have just told about encoder,protocols and all.but they didn't say how to use in our site and that channel in our site?</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">could anyone please provide appropriate solution for my problem?</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">Your suggestion and solutions are welcome. Please response me as soon as possible.</span><br style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px;" />
<span style="color: #000000; font-family: verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 21px; white-space: normal;">please guide me friends</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10472125/how-to-do-live-streaming-a-tv-channel-in-my-website-using-silverlight--c-40.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:12 GMT</pubDate></item><item><title><![CDATA[what is the xamEditor to display % symbol in a infragistics datagrid?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470915/what-is-the-xameditor-to-display--symbol-in-a-infragistics-datagrid.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470915/what-is-the-xameditor-to-display--symbol-in-a-infragistics-datagrid.aspx]]></link><description><![CDATA[Hello all,<br />
<br />
Iam using a infragistics datagrid to display a set of values. i use xamCurrency editor to display cost, so that the $ symbol gets appended automatically. Similarly which editor should i use to display % symbol?<br />
<br />
Please help..&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10470915/what-is-the-xameditor-to-display--symbol-in-a-infragistics-datagrid.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:12 GMT</pubDate></item><item><title><![CDATA[how to get ChildRowDetail templated data grid]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470823/how-to-get-childrowdetail-templated-data-grid.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470823/how-to-get-childrowdetail-templated-data-grid.aspx]]></link><description><![CDATA[&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10470823/how-to-get-childrowdetail-templated-data-grid.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:12 GMT</pubDate></item><item><title><![CDATA[Find Control inside stackpanel and hyperlink button inside datagrid control]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470715/find-control-inside-stackpanel-and-hyperlink-button-inside-datagrid-control.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470715/find-control-inside-stackpanel-and-hyperlink-button-inside-datagrid-control.aspx]]></link><description><![CDATA[<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">hi..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i need to Find Control values inside stackpanel and hyperlink button inside datagrid control in silverlight application.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i need to achive this by clicking a button which out side of a datagrid.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">how to achieve this..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">need ur suggestions..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">regards</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10470715/find-control-inside-stackpanel-and-hyperlink-button-inside-datagrid-control.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:13 GMT</pubDate></item><item><title><![CDATA[How to use Localization in silverlight web app.]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470072/how-to-use-localization-in-silverlight-web-app.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10470072/how-to-use-localization-in-silverlight-web-app.aspx]]></link><description><![CDATA[<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">hi..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i want to know How to use Localization in silverlight web applicatio?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">that is if a user is in USA then our text will be displayed in English.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">if the user is in japan then our text will be displayed in Japanese language.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">is it possible?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">need ur suggestions with examples..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">regards</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10470072/how-to-use-localization-in-silverlight-web-app.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:16 GMT</pubDate></item><item><title><![CDATA[Https and http Image URL Not loading in silverlight]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468798/https-and-http-image-url-not-loading-in-silverlight.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468798/https-and-http-image-url-not-loading-in-silverlight.aspx]]></link><description><![CDATA[hi..<br />
<br />
i have a silverlight web application.<br />
in that application i am trying to load in https and http image url in 2 image control.<br />
<br />
now in my local system the http enabled image url is loading but the https image url is not loading.<br />
<br />
<br />
when i hosted the application in https enabled site, it displays the https enabled image url but not displaying the http enabled imageurl<br />
<br />
<br />
how to handle this issue. i want to display both http and https image url's in my local system as well after hosting the application.<br />
<br />
<br />
my client access policy :<br />
<br />
&lt;?xml version="1.0" encoding="utf-8"?&gt;<br />
&lt;access-policy&gt;<br />
&nbsp; &lt;cross-domain-access&gt;<br />
&nbsp; &nbsp; &lt;policy&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;allow-from http-request-headers="Content-Type"&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;domain uri="http://*" /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;domain uri="https://*" /&gt;<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;/allow-from&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;grant-to&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;resource include-subpaths="true" path="/"&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/resource&gt;<br />
&nbsp; &nbsp; &nbsp; &lt;/grant-to&gt;<br />
&nbsp; &nbsp; &lt;/policy&gt;<br />
&nbsp; &lt;/cross-domain-access&gt;<br />
&lt;/access-policy&gt;<br />
<div><br />
</div>
<br />
<br />
my cross domain policy:<br />
&lt;?xml version="1.0"?&gt;<br />
&lt;!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt;<br />
&lt;cross-domain-policy&gt;<br />
&nbsp; &lt;allow-access-from domain="*" /&gt;<br />
&lt;/cross-domain-policy&gt;<br />
<div><br />
</div>
my http and https imahe url's are:<br />
<br />
https://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50.jpg<br />
http://i594.photobucket.com/albums/tt25/nguyenk3_photo/rose.png<br />
<br />
<br />
so how to hanlde this issue.<br />
<br />
need ur suggestions with examples..<br />
<br />
regards<br />
gopal.s<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468798/https-and-http-image-url-not-loading-in-silverlight.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:18 GMT</pubDate></item><item><title><![CDATA[http video url is not working in mediaplayer in https enabled SL site]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468779/http-video-url-is-not-working-in-mediaplayer-in-https-enabled-sl-site.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468779/http-video-url-is-not-working-in-mediaplayer-in-https-enabled-sl-site.aspx]]></link><description><![CDATA[<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">hi..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i configured my Silverlight we application site in https.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">now i just passing mp4 url into my video player as a source.(url is in http) but it shows the media player but nothing is happened</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">(for example my sample mp4 url is look like&nbsp;</span>http://www.dotnetobject.com/expage.php?exurl=http://www.example.com/1.mp4).<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">but it is not playing.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">note:</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">in my local system the same url is working fine.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">is it be a cross domain issue?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">my cross domain file info is below</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">&lt;?xml version="[/align]1.0"?&gt;</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">&lt;!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"&gt;</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">&lt;cross-domain-policy&gt;</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">&lt;allow-http-request-headers-from domain="*" headers="*"/&gt;</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">&lt;/cross-domain-policy&gt;</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">how to handle this..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">need ur suggetsions..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">regards</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468779/http-video-url-is-not-working-in-mediaplayer-in-https-enabled-sl-site.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:18 GMT</pubDate></item><item><title><![CDATA[Hi All Problem of selectall in textboxes solved please see code used]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468693/hi-all-problem-of-selectall-in-textboxes-solved-please-see-code-used.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468693/hi-all-problem-of-selectall-in-textboxes-solved-please-see-code-used.aspx]]></link><description><![CDATA[<span style="font-size: 13px;">
<p> The problem getting selectall for focus in textboxes the following converted from c+ works perfect.<br />
&nbsp;Just thought I would let you know <br />
Thanks for any help.</p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">Protected</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Overrides</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Sub</span><span style="font-size: 13px;"> OnStartup(</span><span style="color: #0000ff; font-size: 13px;">ByVal</span><span style="font-size: 13px;"> e </span><span style="color: #0000ff; font-size: 13px;">As</span><span style="font-size: 13px;"> StartupEventArgs)</span></p>
<span style="font-size: 13px;">
<p> EventManager.RegisterClassHandler(</p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">GetType</span><span style="font-size: 13px;">(TextBox), UIElement.GotFocusEvent, </span><span style="color: #0000ff; font-size: 13px;">New</span><span style="font-size: 13px;"> RoutedEventHandler(</span><span style="color: #0000ff; font-size: 13px;">AddressOf</span><span style="font-size: 13px;"> SelectAllText), </span><span style="color: #0000ff; font-size: 13px;">True</span><span style="font-size: 13px;">)</span></p>
<span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">MyBase</span><span style="font-size: 13px;">.OnStartup(e)</span></p>
<span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">End</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Sub</span></p>
<span style="color: #0000ff; font-size: 13px;"> </span><span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">Private</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Shared</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Sub</span><span style="font-size: 13px;"> SelectAllText(</span><span style="color: #0000ff; font-size: 13px;">ByVal</span><span style="font-size: 13px;"> sender </span><span style="color: #0000ff; font-size: 13px;">As</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Object</span><span style="font-size: 13px;">, </span><span style="color: #0000ff; font-size: 13px;">ByVal</span><span style="font-size: 13px;"> e </span><span style="color: #0000ff; font-size: 13px;">As</span><span style="font-size: 13px;"> RoutedEventArgs)</span></p>
<span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">Dim</span><span style="font-size: 13px;"> textBox = </span><span style="color: #0000ff; font-size: 13px;">TryCast</span><span style="font-size: 13px;">(e.OriginalSource, TextBox)</span></p>
<span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">If</span><span style="font-size: 13px;"> textBox </span><span style="color: #0000ff; font-size: 13px;">IsNot</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Nothing</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Then</span></p>
<span style="color: #0000ff; font-size: 13px;"> </span><span style="font-size: 13px;">
<p> textBox.SelectAll()</p>
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">End</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">If</span></p>
<span style="color: #0000ff; font-size: 13px;"> </span><span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">End</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Sub</span></p>
<span style="color: #0000ff; font-size: 13px;">
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>End</p>
<p>&nbsp;</p>
</span>
<p><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Class<br />
<br />
David</span></p>
<span style="color: #0000ff; font-size: 13px;"></span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468693/hi-all-problem-of-selectall-in-textboxes-solved-please-see-code-used.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:18 GMT</pubDate></item><item><title><![CDATA[Access outlook folders in popup window!]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468672/access-outlook-folders-in-popup-window.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468672/access-outlook-folders-in-popup-window.aspx]]></link><description><![CDATA[Hi All,<br />
I have a button named choose folder when we click at this button then <br />
we have to open outlook folders in popup window.<br />
So how we access outlook folders.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468672/access-outlook-folders-in-popup-window.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:18 GMT</pubDate></item><item><title><![CDATA[How to use MediaStreamSource in media element control in silverlight]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468670/how-to-use-mediastreamsource-in-media-element-control-in-silverlight.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468670/how-to-use-mediastreamsource-in-media-element-control-in-silverlight.aspx]]></link><description><![CDATA[<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">hi..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i am using media element control in order to load videos.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">after hosting the silverlight applcation the video i opened is got struck in every 10 seconds.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i m having large size videos(size is 400 to 500mb) then i m trying to play those size videos after hosting.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i searched abt media element control and there is property called "MediaStreamSource" in meida element control</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">so if use the "MediaStreamSource" property then is it possible to avoid the vidoe buffering issue?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">is it possible to use "MediaStreamSource" in media element control</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">need ur suggestions with examples..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">Note:</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">my videos extensions are mp4,mp3 and wmv files</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">regards</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468670/how-to-use-mediastreamsource-in-media-element-control-in-silverlight.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:19 GMT</pubDate></item><item><title><![CDATA[Passing Video as streams in media element control]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468615/passing-video-as-streams-in-media-element-control.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468615/passing-video-as-streams-in-media-element-control.aspx]]></link><description><![CDATA[<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">hi..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">how to pass streams inside media element control in silverlight?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i m facing an issue if the large size videos are taking too time to load.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">currently i set video file source in media element control.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">so in order to achieve fast video can i pass stream of video file into the media elelment contro?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">is it possible?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">need ur suggestions..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">regards</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468615/passing-video-as-streams-in-media-element-control.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:19 GMT</pubDate></item><item><title><![CDATA[Bind texbox data in datagrid on button click in WPF]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468614/bind-texbox-data-in-datagrid-on-button-click-in-wpf.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468614/bind-texbox-data-in-datagrid-on-button-click-in-wpf.aspx]]></link><description><![CDATA[<div style="margin-top: 25px;">I have text box and a button<br />
After button click we have to show that data in my datagrid in WPF. </div>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468614/bind-texbox-data-in-datagrid-on-button-click-in-wpf.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:19 GMT</pubDate></item><item><title><![CDATA[Large Size Videos taking more time to load in mediaelement control]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468607/large-size-videos-taking-more-time-to-load-in-mediaelement-control.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468607/large-size-videos-taking-more-time-to-load-in-mediaelement-control.aspx]]></link><description><![CDATA[<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">hi..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">in my silverlight web application Large Size Videos taking more time to load in mediaelement control?</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i verified my dowload speed too and it has upto 4mbps.</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">now i want to know why the video is loading very slow(it takes app. 15 to 20 minutes to load)</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">need ur suggestions..</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">Note:</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">i m playing a mp4 file and size is 300 to 500m mb files</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">regards</span><br style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; background-color: #fff;" />
<span style="color: #444444; font-family: 'segoe ui', arial, verdana; line-height: 20px; white-space: normal; background-color: #fff;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468607/large-size-videos-taking-more-time-to-load-in-mediaelement-control.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:19 GMT</pubDate></item><item><title><![CDATA[Focus on textbox contents with greater than "0" in the box]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468603/focus-on-textbox-contents-with-greater-than-0-in-the-box.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468603/focus-on-textbox-contents-with-greater-than-0-in-the-box.aspx]]></link><description><![CDATA[&nbsp;Hi All<br />
&nbsp;Still trying to find a solution none of the code samples will copy into xaml.vb and work so I was wondering if its possible to do it another way.<br />
<br />
<table width="84" style="width: 63pt; border-collapse: collapse;" border="0" cellspacing="0" cellpadding="0">
    <tbody>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">txtbox1.selectedText=0 </span></td>
        </tr>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;">txtbox2.selectedText=0</span></td>
        </tr>
        <tr height="19" style="height: 14.4pt;">
            <td style="border: 0px black; height: 14.4pt; background-color: transparent;"><span style="font-family: calibri;"></span></td>
        </tr>
    </tbody>
</table>
The above textboxes have contents focus when entering into if "0" is the cell content<br />
but if any number higher the focus contents is lost and cursor goes to left of contents<br />
Is there anyway of changing the above<br />
<br />
Many many Thanks I have been stuck for ages and tried all suggestions but none have worked for me.<br />
<br />
David&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468603/focus-on-textbox-contents-with-greater-than-0-in-the-box.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:19 GMT</pubDate></item><item><title><![CDATA[How to Logout silverlight application with basic authentication(MVVM A]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468495/how-to-logout-silverlight-application-with-basic-authenticationmvvm-a.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468495/how-to-logout-silverlight-application-with-basic-authenticationmvvm-a.aspx]]></link><description><![CDATA[Hi all,<br />
<br />
<br />
I m working on a silverlight application and i have a problem when i run it on browser<br />
i log-in by giving my username, password for windows(Basic Authentication), but when i close the tab and open it again<br />
it does not ask for password, can anybody give the solution, how to log-out from the application in such case.<br />
<br />
I am using WCF service and MVVM Architecture.<br />
<br />
Great regards in advance.<br />
<br />
Cheers,<br />
Sobiya&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468495/how-to-logout-silverlight-application-with-basic-authenticationmvvm-a.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:20 GMT</pubDate></item><item><title><![CDATA[Is it possible to use WCF service for raduplod in silverlight applica?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468475/is-it-possible-to-use-wcf-service-for-raduplod-in-silverlight-applica.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468475/is-it-possible-to-use-wcf-service-for-raduplod-in-silverlight-applica.aspx]]></link><description><![CDATA[Is it possible to use <strong><em><span style="text-decoration: underline;">WCF </span></em></strong>service for <strong><em><span style="text-decoration: underline;">raduplod </span></em></strong>in silverlight application?<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hi to all ,can we use <strong><em>wcf </em></strong>service for <strong><em>radupload </em></strong>for upload images into database.here i want to use radupload &nbsp;in silverlight with wcf service,before insert &nbsp;into database i check file name is already in db or not .if available i want to rename the currently upload file using some popup window and then it insert into database.<br />
pls reply me asap .,,, thanx in advance&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468475/is-it-possible-to-use-wcf-service-for-raduplod-in-silverlight-applica.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:20 GMT</pubDate></item><item><title><![CDATA[Can I add Select All Text to Focus for edit in a textbox after enter is pressed]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468463/can-i-add-select-all-text-to-focus-for-edit-in-a-textbox-after-enter-is-pressed.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468463/can-i-add-select-all-text-to-focus-for-edit-in-a-textbox-after-enter-is-pressed.aspx]]></link><description><![CDATA[<span style="font-size: 13px;">
<p>Hi All I have been stuck with this problem and dont know how to deal with it, I have had code suggested but none of it works in my Xaml Sart up or Xaml vb page.<br />
What do { { }} &nbsp;brackets mean in the code suggested because it just gets&nbsp;highlighted.&nbsp;<br />
<br />
Can I add to this code below to have the contents Focussed when entering into it.</p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">Protected</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Overrides</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Sub</span><span style="font-size: 13px;"> OnPreviewKeyDown(</span><span style="color: #0000ff; font-size: 13px;">ByVal</span><span style="font-size: 13px;"> e </span><span style="color: #0000ff; font-size: 13px;">As</span><span style="font-size: 13px;"> System.Windows.Input.KeyEventArgs)</span></p>
<span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">If</span><span style="font-size: 13px;"> (e.Key = Key.Enter) </span><span style="color: #0000ff; font-size: 13px;">Then</span></p>
<span style="color: #0000ff; font-size: 13px;"> </span><span style="font-size: 13px;">
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">Dim</span><span style="font-size: 13px;"> ue </span><span style="color: #0000ff; font-size: 13px;">As</span><span style="font-size: 13px;"> FrameworkElement</span></p>
<span style="font-size: 13px;">
<p> ue = e.OriginalSource</p>
<p> e.Handled = </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">True</span></p>
<span style="color: #0000ff; font-size: 13px;"> </span><span style="font-size: 13px;">
<p> ue.MoveFocus(</p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">New</span><span style="font-size: 13px;"> TraversalRequest(FocusNavigationDirection.Next))</span></p>
<span style="font-size: 13px;">
<p> </p>
<p> </p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">End</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">If</span></p>
<span style="color: #0000ff; font-size: 13px;">
<p>&nbsp;</p>
</span>
<p><span style="color: #0000ff; font-size: 13px;">End</span><span style="font-size: 13px;"> </span><span style="color: #0000ff; font-size: 13px;">Sub</span></p>
<span style="color: #0000ff; font-size: 13px;"></span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468463/can-i-add-select-all-text-to-focus-for-edit-in-a-textbox-after-enter-is-pressed.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:21 GMT</pubDate></item><item><title><![CDATA[How to perfrom Transaction Roll Back in Silverlight Entity Model]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468404/how-to-perfrom-transaction-roll-back-in-silverlight-entity-model.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468404/how-to-perfrom-transaction-roll-back-in-silverlight-entity-model.aspx]]></link><description><![CDATA[<div class="container">
<div class="body">
<p>&nbsp;</p>
<p>Hi ,</p>
<p>&nbsp;&nbsp;&nbsp; We are creating a Accounting SoftWare using MVVM pattern and EF.&nbsp; At one point When we try to save a record to a table, we will also call stored procedure to update other tables. When one of the Operation fails then we do not want to update the other tables. So we want to do Transction Roll Back, when any of the Save operation Fails. In other type of projects , we can use Transaction Scope, But&nbsp;,&nbsp;silverlight is not allowing us to add the System.Transaction dll. How to accomplish this in Silverlight project?</p>
<p>Kindly help us to solve this issue.</p>
<p>Rds,</p>
<p>Parameswari</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
</div>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468404/how-to-perfrom-transaction-roll-back-in-silverlight-entity-model.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:21 GMT</pubDate></item><item><title><![CDATA[Video in media element control got struck every 10 seconds in SL web after hosting]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468380/video-in-media-element-control-got-struck-every-10-seconds-in-sl-web-after-hosting.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468380/video-in-media-element-control-got-struck-every-10-seconds-in-sl-web-after-hosting.aspx]]></link><description><![CDATA[<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">hi..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">we placed a video in a folder. then pointed the video in mediaelement control in silverlight web application.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">now the issue is the video is playing but it got struch in every 10 seconds after hosting.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">(my video size will vary for each video for ex. 1 Mb to 500MB)</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">locally,the same video working well in the same application.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">but after hosting i am facing this issue.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">how to handle this..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">i am using silverlight web app. and wcf service.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">need ur suggestions with examples..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">regards</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468380/video-in-media-element-control-got-struck-every-10-seconds-in-sl-web-after-hosting.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:21 GMT</pubDate></item><item><title><![CDATA[Add muliple users from a csv file to database table in silverlight]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468311/add-muliple-users-from-a-csv-file-to-database-table-in-silverlight.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468311/add-muliple-users-from-a-csv-file-to-database-table-in-silverlight.aspx]]></link><description><![CDATA[<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">hi..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">i am having a csv file which contains my outlook contacts.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">now i want to add those users into my database table using silverlight web application.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">how to achieve this..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">need ur suggestions with examples...</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">regards</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468311/add-muliple-users-from-a-csv-file-to-database-table-in-silverlight.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:22 GMT</pubDate></item><item><title><![CDATA[how do i code this for use in Xaml startup overide to get textbox contents focus]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468275/how-do-i-code-this-for-use-in-xaml-startup-overide-to-get-textbox-contents-focus.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468275/how-do-i-code-this-for-use-in-xaml-startup-overide-to-get-textbox-contents-focus.aspx]]></link><description><![CDATA[&nbsp;I want focus on textboxex when I enter/tab into them for edit reasons.<br />
&nbsp;Where should this code go and is it the right format .<br />
I just keep going round in circles.<br />
<br />
<span style="color: blue;">protected override void </span>OnStartup(<span style="color: #2b91af;">StartupEventArgs </span>e)<br />
{<br />
&nbsp;&nbsp;&nbsp; <span style="color: #2b91af;">EventManager</span>.RegisterClassHandler(<span style="color: blue;">typeof</span>(<span style="color: #2b91af;">TextBox</span>), <span style="color: #2b91af;">TextBox</span>.GotFocusEvent, <span style="color: blue;">new </span><span style="color: #2b91af;">RoutedEventHandler</span>(TextBox_GotFocus));<br />
<br />
&nbsp;&nbsp;&nbsp; <span style="color: blue;">base</span>.OnStartup(e);<br />
}<br />
<br />
Thanks<br />
&nbsp; David<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468275/how-do-i-code-this-for-use-in-xaml-startup-overide-to-get-textbox-contents-focus.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:22 GMT</pubDate></item><item><title><![CDATA[How to clear the values in Radgrdiview filter items]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468263/how-to-clear-the-values-in-radgrdiview-filter-items.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468263/how-to-clear-the-values-in-radgrdiview-filter-items.aspx]]></link><description><![CDATA[Hai friends.<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I have an issues in&nbsp;rad grid&nbsp;view filtering.I have a <strong>value item</strong> in grid view and values item has some values so when i am filtering the grid view values it is binding the data to chart and display the value in chart that working fine.<br />
&nbsp;&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; so my problems is the&nbsp;rad grid&nbsp;filter value for each item i am binding to chart should be clear.that is every time i am selecting the value from grid and binding to chart the previous value should be cleared.<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I used Filter&nbsp;Descriptor&nbsp;,I some&nbsp;article&nbsp;i have gone through about i filter descriptor to clear the values.<br />
<br />
I am using&nbsp;Silverlight&nbsp;5 version.Can any one give the solution.<br />
<br />
<br />
<br />
Thank you,............<br />
<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468263/how-to-clear-the-values-in-radgrdiview-filter-items.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:22 GMT</pubDate></item><item><title><![CDATA[I need to control create dynamically based on a condition]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468250/i-need-to-control-create-dynamically-based-on-a-condition.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468250/i-need-to-control-create-dynamically-based-on-a-condition.aspx]]></link><description><![CDATA[My requirement is I have a scroll viewer. I have to create n number of image controls in&nbsp;<span style="white-space: normal;">scroll viewer</span>&nbsp;when a button is clicked.Can any one help me how to sort out this....! If the count is 4 I have to show 4 image controls in scroll viewer and the image size is 100*100.This is an urgent Requirement.<br />
Any help is appreciated. Thanks in advance.................&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468250/i-need-to-control-create-dynamically-based-on-a-condition.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:22 GMT</pubDate></item><item><title><![CDATA[Still cant get focus on txtboxes without double click when in xaml forms]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468075/still-cant-get-focus-on-txtboxes-without-double-click-when-in-xaml-forms.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468075/still-cant-get-focus-on-txtboxes-without-double-click-when-in-xaml-forms.aspx]]></link><description><![CDATA[Hi All<br />
<br />
<span style="color: #0000ff; font-size: 13px;">How can the code below be changed to have focus when entering into any of 18 textboxes on my input form
<p>&nbsp;&nbsp;</p>
</span>
<p><span style="color: #a31515; font-size: 13px;">&lt;TextBox</span><span style="color: #ff0000; font-size: 13px;"> Name</span><span style="color: #0000ff; font-size: 13px;">="txtH1SC"</span><span style="color: #ff0000; font-size: 13px;">&nbsp;</span><span style="color: #ff0000; font-size: 13px;"> TabIndex</span><span style="color: #0000ff; font-size: 13px;">="1"</span><span style="color: #ff0000; font-size: 13px;"> AcceptsTab</span><span style="color: #0000ff; font-size: 13px;">="False"</span><span style="color: #ff0000; font-size: 13px;"> Text</span><span style="color: #0000ff; font-size: 13px;">="{</span><span style="color: #a31515; font-size: 13px;">Binding</span><span style="color: #ff0000; font-size: 13px;"> Path</span><span style="color: #0000ff; font-size: 13px;">=H1SC, </span><span style="color: #ff0000; font-size: 13px;">UpdateSourceTrigger</span><span style="color: #0000ff; font-size: 13px;">=PropertyChanged}" </span>AcceptsReturn<span style="color: #0000ff; font-size: 13px;">="False"</span><span style="color: #ff0000; font-size: 13px;"> ForceCursor</span><span style="color: #0000ff; font-size: 13px;">="False"</span><span style="color: #ff0000; font-size: 13px;"> OverridesDefaultStyle</span><span style="color: #0000ff; font-size: 13px;">="False" </span>Focusable<span style="color: #0000ff; font-size: 13px;">="True"</span><span style="color: #ff0000; font-size: 13px;"> AutoWordSelection</span><span style="color: #0000ff; font-size: 13px;">="False"</span><span style="color: #ff0000; font-size: 13px;"> IsTabStop</span><span style="color: #0000ff; font-size: 13px;">="True" /&gt;</span></p>
<p>&nbsp;</p>
<p>
</p>
<p>&nbsp;</p>
<p>
<span style="color: #0000ff; font-size: 13px;"></span></p>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468075/still-cant-get-focus-on-txtboxes-without-double-click-when-in-xaml-forms.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:23 GMT</pubDate></item><item><title><![CDATA[Why cant I set txtbox contents focus when pressing enter and moving into new txtbox]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468045/why-cant-i-set-txtbox-contents-focus-when-pressing-enter-and-moving-into-new-txtbox.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468045/why-cant-i-set-txtbox-contents-focus-when-pressing-enter-and-moving-into-new-txtbox.aspx]]></link><description><![CDATA[Why cant I set txtbox contents focus when pressing enter and moving into new txtbox<br />
Double click on mouse it goes into edit mode with contents highlighted but not if I move down from txtbox1 to txtbox2on pressing enter.<br />
I need to have the focus like you get in access !!!!!<br />
<br />
Thanks<br />
<br />
David<br />
<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468045/why-cant-i-set-txtbox-contents-focus-when-pressing-enter-and-moving-into-new-txtbox.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:23 GMT</pubDate></item><item><title><![CDATA[Add watermark in a video in silverlight and play in Silverlight Media Element]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468016/add-watermark-in-a-video-in-silverlight-and-play-in-silverlight-media-element.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10468016/add-watermark-in-a-video-in-silverlight-and-play-in-silverlight-media-element.aspx]]></link><description><![CDATA[<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">hi..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">i need to add watermark text in a video and then i need to play that file in Silverlight Media Element control.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">is it any possible way to achieve this in silverlight web application.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">is there any other control is availabe to achive this..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">need ur suggestions..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">regards</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10468016/add-watermark-in-a-video-in-silverlight-and-play-in-silverlight-media-element.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:23 GMT</pubDate></item><item><title><![CDATA[how to embbed silverlight appl in web page]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467949/how-to-embbed-silverlight-appl-in-web-page.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467949/how-to-embbed-silverlight-appl-in-web-page.aspx]]></link><description><![CDATA[hi to all&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; how to&nbsp;embed&nbsp;silver light&nbsp;appl(Page.xaml) in web page,here i use radupload for the i create radupload handler(.ashx) ,if i run in&nbsp;silver light&nbsp;appl(host and web) it work,if i call from web page(page.xaml) ,it show the error<br />
<br />
("<span style="white-space: normal;">Error<span class="Apple-tab-span" style="white-space: pre;">	</span>1<span class="Apple-tab-span" style="white-space: pre;">	</span>Could not create type 'Example.Web.MyRadUploadHandler'.E:\FileStreamDatabaseBackUp\WebSite16\MyRadUploadHandler.ashx<span class="Apple-tab-span" style="white-space: pre;">	</span>1")<br />
<br />
<br />
<br />
</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pls tell me how to add uploadhandler also<br />
<div><br />
</div>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467949/how-to-embbed-silverlight-appl-in-web-page.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:24 GMT</pubDate></item><item><title><![CDATA[how to create silverlight application in vb.net using rad upload]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467944/how-to-create-silverlight-application-in-vbnet-using-rad-upload.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467944/how-to-create-silverlight-application-in-vbnet-using-rad-upload.aspx]]></link><description><![CDATA[hi to all&nbsp;<br />
&nbsp; i am new to silverlight application.&nbsp;how to create silverligth app using rad upload in vb lang,pls provide upload handler(ashx) also .&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467944/how-to-create-silverlight-application-in-vbnet-using-rad-upload.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:24 GMT</pubDate></item><item><title><![CDATA[In telerik reports]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467943/in-telerik-reports.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467943/in-telerik-reports.aspx]]></link><description><![CDATA[<span style="color: #000000;">Hi All<br />
<br />
In telerik reports, I have the percentage format is 0.00%, in code behind&nbsp; it is like </span><span style="color: #000000; font-family: consolas; font-size: 13px;">
<p>&nbsp;</p>
</span>
<p><span style="color: #000000; font-family: consolas; font-size: 13px;">this.textBox6.Format = </span><span style="color: #a31515; font-family: consolas; font-size: 13px;">"{0:0.00%}"</span><span style="font-family: consolas; font-size: 13px;">;</span></p>
<span style="font-family: consolas; font-size: 13px;"><br />
<span style="color: #000000;">In field, I have <br />
<br />
iif(Fields.TotalWorkOrder &lt;&gt; 0,(Fields.TotalTypeWorkOrder/Fields.TotalWorkOrder)*100,0)<br />
<br />
but this is not working means, it display only</span> <span style="color: #7030a0;">"0.00%". <br />
<br />
</span><span style="color: #000000;">no values returning, even workorder and totalworkorder is having some values.<br />
<br />
Thks in advance.</span></span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467943/in-telerik-reports.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:24 GMT</pubDate></item><item><title><![CDATA[Combobox and SelectedItem:]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467894/combobox-and-selecteditem.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467894/combobox-and-selecteditem.aspx]]></link><description><![CDATA[I have a DataTemplate:<br />
&lt;DataTemplate &gt;<br />
&nbsp;&nbsp; &lt;Grid&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;StackPanel Orientation="Horizontal" &gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Image Source="{Binding SomeImage}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;TextBlock Text={"Bingding SomeText}" /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/StackPanel&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;/Grid&gt;<br />
&lt;/DataTemplate&gt;<br />
<br />
And a toggleButton:<br />
&lt;ToggleButton IsChecked = "{Binding SomeBinding, Mode = TwoWay}" &gt;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;ToggleButton.Content&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Image Source="{Bingding Path=SelectedValue /&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/ToggleButton.Content&gt;<br />
&lt;/ToggleButton&gt;<br />
<br />
And a combobox:<br />
&lt;ComboBox ItemSource="{Binding SomeItemSource}" ItemTemplate="{StaticResource ComboboxItemTemplate}"<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SelectedItem="{Binding SelectTedItemActive}" SelectedValuePath="SelectTedValueImage"&gt;<br />
&lt;/ComboBox&gt;<br />
<br />
In the code behind:<br />
<br />
ItemSource:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SomeItemSource contains two data: Image1, Text1 and Image2, Text2<br />
<br />
When I run the application I can choose from the combox and the togglebutton shows what I choosen.<br />
If I choose Image1, Text1 the togglebutton shows Image1&nbsp;and the IsChecked is set to True.<br />
<br />
My question is how can I change the code that makes the IsChecked is set to false when I choose the same (Image1,Text1)? Thanks very much.<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467894/combobox-and-selecteditem.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:52 GMT</pubDate></item><item><title><![CDATA[Set Focus on txtbox contents when tab into it so its contents can be changed]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467890/set-focus-on-txtbox-contents-when-tab-into-it-so-its-contents-can-be-changed.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467890/set-focus-on-txtbox-contents-when-tab-into-it-so-its-contents-can-be-changed.aspx]]></link><description><![CDATA[&nbsp;Hi All<br />
<br />
I have a zaml form with 18 textboxes stacked up from top to bottom of the form and when I press enter it moves down from box 1 to box 2 etc I need the box contents to have focus when I move down &nbsp;so it can be changed if required<br />
Thanks<br />
<br />
David<br />
<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467890/set-focus-on-txtbox-contents-when-tab-into-it-so-its-contents-can-be-changed.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:52 GMT</pubDate></item><item><title><![CDATA[how to fix the data grid  headers when using scrollviewer]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467781/how-to-fix-the-data-grid--headers-when-using-scrollviewer.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467781/how-to-fix-the-data-grid--headers-when-using-scrollviewer.aspx]]></link><description><![CDATA[I have a datagrid which is placed inside a scrollviewer in silverlight. Due to some reasons i am not using datagrid's scroll bars. That's why when I scroll down, the datagrid's header gets eliminated. I want to fix the grid's headers. <br />
<br />
Thanks&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467781/how-to-fix-the-data-grid--headers-when-using-scrollviewer.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:52 GMT</pubDate></item><item><title><![CDATA[how to create silverlight application in vb.net]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467634/how-to-create-silverlight-application-in-vbnet.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467634/how-to-create-silverlight-application-in-vbnet.aspx]]></link><description><![CDATA[hi to all<br />
&nbsp; &nbsp;i am new to silverlight application,can any one help me how to create silverligth application,how to add assembly,<br />
i add a referenec like(Telerik.windows.controls) but i am not know how refer assembly in &lt;usercontrol&gt;&lt;/usercontrol&gt; tab like&nbsp;<br />
<br />
&lt;UserControl<br />
<span class="Apple-tab-span" style="white-space: pre;">	</span>xmlns="http://schemas.microsoft.com/client/2007"<br />
<span class="Apple-tab-span" style="white-space: pre;">	</span>xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"<br />
<span class="Apple-tab-span" style="white-space: pre;">	</span>x:Class="Telerik.Windows.Examples.Upload.Theming.Example"<br />
&nbsp; &nbsp; xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"&gt;<br />
<br />
how to use this xmlns with namespace and assembly .<br />
<br />
here i want to use radasynchrons upload for upload file &nbsp;pls reply asap<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467634/how-to-create-silverlight-application-in-vbnet.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:52 GMT</pubDate></item><item><title><![CDATA[Find textbox value in row details template in datagrid]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467274/find-textbox-value-in-row-details-template-in-datagrid.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467274/find-textbox-value-in-row-details-template-in-datagrid.aspx]]></link><description><![CDATA[<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">hi..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">how to Find textbox value in row details template in datagrid in silverlight web application.</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">in my datagrid i plcaed a text box in row details template and i need to find the each row text box value during my button click which is placed out side of the datagrid control..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">need ur suggestions..</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">regards</span><br style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; background-color: #f5f5f5;" />
<span style="color: #333333; font-family: 'lucida grande', verdana, arial, 'bitstream vera sans', sans-serif; line-height: 20px; white-space: normal; background-color: #f5f5f5;">gopal.s</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467274/find-textbox-value-in-row-details-template-in-datagrid.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:54 GMT</pubDate></item><item><title><![CDATA[Lightswitch Print everything in a component one flexgrid]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467240/lightswitch-print-everything-in-a-component-one-flexgrid.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10467240/lightswitch-print-everything-in-a-component-one-flexgrid.aspx]]></link><description><![CDATA[I am using lightswitch2011. I need to print everything in a component one flexgrid but i can able to print only the visible part.&nbsp;how to print eveerything in a <span style="white-space: normal;">component one flexgrid?</span>&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10467240/lightswitch-print-everything-in-a-component-one-flexgrid.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:54 GMT</pubDate></item><item><title><![CDATA[How to create alarms(notifications) in metro style app in windows 8?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466905/how-to-create-alarmsnotifications-in-metro-style-app-in-windows-8.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466905/how-to-create-alarmsnotifications-in-metro-style-app-in-windows-8.aspx]]></link><description><![CDATA[<span style="white-space: normal;">Hi,</span><br />
<br />
<span style="white-space: normal;">&nbsp;I have created alarm app in Windows Phone 7 by using ScheduledNotification class. How can we create alarm in metro style app rather than Toast notification? Is there any way to dismiss the alarm and snooze the notification when created?I know that ScheduledToastNotification class is available.But we don't have dismiss,snooze options for that. &nbsp;</span><br />
<br />
<span style="white-space: normal;">&nbsp; Please help me.. Help me Help me.......</span><br />
<br />
<span style="white-space: normal;">&nbsp; &nbsp;Thanks in-advance.</span><br />
<br />
<br />
<span style="white-space: normal;">Regards,<br />
</span>Chandra Sekhar.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466905/how-to-create-alarmsnotifications-in-metro-style-app-in-windows-8.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:56 GMT</pubDate></item><item><title><![CDATA[Is there any way to create alarm once,daily,weekly in metro app Windows 8?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466760/is-there-any-way-to-create-alarm-oncedailyweekly-in-metro-app-windows-8.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466760/is-there-any-way-to-create-alarm-oncedailyweekly-in-metro-app-windows-8.aspx]]></link><description><![CDATA[Hi,<br />
<br />
&nbsp;I have created alarm app in Windows Phone 7. How can we create alarm in metro style app rather than Toast notification? Is there any way to dismiss the alarm and snooze the alarm when created?I know that ScheduledToastNotification class is available.But we don't have dismiss,snooze options for that. &nbsp;<br />
<br />
&nbsp; Please help me..<br />
<br />
&nbsp; &nbsp;Thanks in-advance.<br />
<br />
<br />
Regards,<br />
chandu.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466760/is-there-any-way-to-create-alarm-oncedailyweekly-in-metro-app-windows-8.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:56 GMT</pubDate></item><item><title><![CDATA[Disable print screen and ctrl keys options in silverlight application]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466558/disable-print-screen-and-ctrl-keys-options-in-silverlight-application.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466558/disable-print-screen-and-ctrl-keys-options-in-silverlight-application.aspx]]></link><description><![CDATA[hi..<br />
<br />
<br />
i need to disable the print screen and ctrl keys in my silverlight application.<br />
<br />
<br />
if the user press the print screen or ctrl keys i need to pass a message "the keys are disabled".<br />
<br />
<br />
how to do this..<br />
<br />
<br />
need ur suggestions..<br />
<br />
<br />
regards<br />
gopal.s&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466558/disable-print-screen-and-ctrl-keys-options-in-silverlight-application.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:56 GMT</pubDate></item><item><title><![CDATA[desktop starts blinking when wpf application start and if we close it it stops blinking in background.]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466414/desktop-starts-blinking-when-wpf-application-start-and-if-we-close-it-it-stops-blinking-in-background.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466414/desktop-starts-blinking-when-wpf-application-start-and-if-we-close-it-it-stops-blinking-in-background.aspx]]></link><description><![CDATA[when i start my wpf application desktop start blinking in the background..
processor used 5 to 8 %
when we close the application it stops blinking..

can anyone help me plz.......&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466414/desktop-starts-blinking-when-wpf-application-start-and-if-we-close-it-it-stops-blinking-in-background.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:57 GMT</pubDate></item><item><title><![CDATA[Get the control values inside stack panel inside datagrid]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466186/get-the-control-values-inside-stack-panel-inside-datagrid.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466186/get-the-control-values-inside-stack-panel-inside-datagrid.aspx]]></link><description><![CDATA[hi..<br />
<br />
i have datagrid control and inside the grid i have added a stack panel control and i added label and image controls.<br />
<br />
now i clicked the image inside datagrid and now i need to get the image values and label values inside the stack panel.<br />
<br />
how to handle this..<br />
<br />
need ur&nbsp;suggestions..<br />
regards<br />
gopal.s&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466186/get-the-control-values-inside-stack-panel-inside-datagrid.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:57 GMT</pubDate></item><item><title><![CDATA[How to add image to a content using xaml in silverlight]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466182/how-to-add-image-to-a-content-using-xaml-in-silverlight.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466182/how-to-add-image-to-a-content-using-xaml-in-silverlight.aspx]]></link><description><![CDATA[How to get an image as a content (expand and collapse) using xaml in silverlight&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466182/how-to-add-image-to-a-content-using-xaml-in-silverlight.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:57 GMT</pubDate></item><item><title><![CDATA[how can i use grid like a listbox in wpf?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466044/how-can-i-use-grid-like-a-listbox-in-wpf.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466044/how-can-i-use-grid-like-a-listbox-in-wpf.aspx]]></link><description><![CDATA[hi!<br />
<br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; I have a grid and in that I have some images only. when I click on one image, image should be change but remaining images won't change. And if I click on another image it should be change where previous image should be come to normal place.</span><br />
<br />
<br />
<span style="white-space: normal;">&nbsp; for the first task i wrote this code</span><br />
<br />
<span style="white-space: normal;">private void ChangeHSImage(string Hs_name)</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; {</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;foreach (var i in HSGrid.Children)</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (i is Image)</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Image img = i as Image;</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; img.Name = Hs_name;</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (img.Tag.ToString() == "Active")</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; img.Source = (ImageSource)new ImageSourceConverter().ConvertFromString("HS_NewImages/"&nbsp;</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; img.Name + ".png"); &nbsp; &nbsp;&nbsp;</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</span><br />
<span style="white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</span><br />
<br />
<span style="white-space: normal;">but remaining all images also changed... please help me.</span>&nbsp;<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466044/how-can-i-use-grid-like-a-listbox-in-wpf.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:58 GMT</pubDate></item><item><title><![CDATA[how can I  set mp3 tones as my alarm in wpf?]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466036/how-can-i--set-mp3-tones-as-my-alarm-in-wpf.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466036/how-can-i--set-mp3-tones-as-my-alarm-in-wpf.aspx]]></link><description><![CDATA[Hi,&nbsp;<br />
<br />
&nbsp;Now i am setting background to my panorama page through emulator as well as device also. but I want to add ring tones to my alarm from my device. how can I do it?&nbsp;<br />
<br />
<br />
Help me... Thanks&nbsp;in-advance.&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466036/how-can-i--set-mp3-tones-as-my-alarm-in-wpf.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:59 GMT</pubDate></item><item><title><![CDATA[how to change the image in grid when i click on that and others remain]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466035/how-to-change-the-image-in-grid-when-i-click-on-that-and-others-remain.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10466035/how-to-change-the-image-in-grid-when-i-click-on-that-and-others-remain.aspx]]></link><description><![CDATA[hi,&nbsp;<br />
<br />
&nbsp;I have a grid and in that I have some images only. when I click on one image, image should be change but remaining images won't change. And if I click on another image it should be change where previous image should be come to normal place.<br />
<br />
<br />
&nbsp; for the first task i wrote this code<br />
<br />
private void ChangeHSImage(string Hs_name)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;foreach (var i in HSGrid.Children)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (i is Image)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Image img = i as Image;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; img.Name = Hs_name;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (img.Tag.ToString() == "Active")<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; img.Source = (ImageSource)new ImageSourceConverter().ConvertFromString("HS_NewImages/" <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; img.Name + ".png"); &nbsp; &nbsp;&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br />
<br />
but remaining all images also changed... please help me.<br />
<br />
<br />&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10466035/how-to-change-the-image-in-grid-when-i-click-on-that-and-others-remain.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:59 GMT</pubDate></item><item><title><![CDATA[get Full Path in OpenFileDialog in silverlight]]></title><guid isPermaLink="false"><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10465846/get-full-path-in-openfiledialog-in-silverlight.aspx]]></guid><link><![CDATA[http://www.eggheadcafe.com/community/xaml/56/10465846/get-full-path-in-openfiledialog-in-silverlight.aspx]]></link><description><![CDATA[How to get Full Path in OpenFileDialog in silverlight&nbsp;&nbsp;<a href="http://www.eggheadcafe.com/community/xaml/56/10465846/get-full-path-in-openfiledialog-in-silverlight.aspx" target="_self">read more</a>]]></description><pubDate>Thu, 28 Mar 2013 23:01:59 GMT</pubDate></item></channel></rss>