User bendewey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:14:20Z http://stackoverflow.com/feeds/user/37881 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/679942/can-flash-or-silverlight-be-used-for-kiosk-applications-how/680008#680008 1 Answer by bendewey for Can Flash or Silverlight be used for kiosk applications? How? bendewey 2009-03-25T02:23:02Z 2009-11-26T13:19:13Z <p>Silverlight 3 and greater have a feature called <a href="http://silverlight.net/getstarted/silverlight3/default.aspx#whatsnew" rel="nofollow">Out of Browser</a> which may suit your needs.</p> http://stackoverflow.com/questions/390286/generic-parse-method-without-boxing 0 Generic Parse Method without Boxing bendewey 2008-12-23T22:47:03Z 2009-11-16T17:27:17Z <p>I am trying to write a generic Parse method that converts and returns a strongly typed value from a NamedValueCollection. I tried two methods but both of these methods are going through boxing and unboxing to get the value. Does anyone know a way to avoid the boxing? If you saw this in production would you not like it, how bad is it for performance?</p> <p>Usuage:</p> <pre><code>var id = Request.QueryString.Parse&lt;int&gt;("id"); </code></pre> <p>Attempt #1:</p> <pre><code>public static T Parse&lt;T&gt;(this NameValueCollection col, string key) { string value = col[key]; if (string.IsNullOrEmpty(value)) return default(T); if (typeof(T) == typeof(int)) { //return int.Parse(value); // cannot convert int to T //return (T)int.Parse(value); // cannot convert int to T return (T)(object)int.Parse(value); // works but boxes } if (typeof(T) == typeof(long)) { return (T)(object)long.Parse(value); // works but boxes } ... return default(T); } </code></pre> <p>Attempt #2 (using reflection):</p> <pre><code>public static T Parse&lt;T&gt;(this NameValueCollection col, string key) { string value = col[key]; if (string.IsNullOrEmpty(value)) return default(T); try { var parseMethod = typeof(T).GetMethod("Parse", new Type[] { typeof(string) }); if (parseMethod == null) return default(T); // still boxing because invoke returns an object var parsedVal = parseMethod.Invoke(null, new object[] { value }); return (T)parsedVal; } // No Proper Parse Method found catch(AmbiguousMatchException) { } return default(T); } </code></pre> http://stackoverflow.com/questions/1705184/why-is-my-jquery-plugin-for-removing-text-on-focus-and-re-adding-it-on-blur-not-w/1705214#1705214 0 Answer by bendewey for Why is my jQuery plugin for removing text on focus and re-adding it on blur not working? bendewey 2009-11-10T02:01:57Z 2009-11-10T02:13:45Z <p>You'll want to write your plugin seperate from your code implementation.</p> <p>Your plugin would look something like this:</p> <pre><code> (function($) { $.fn.watermark = function() { return this.each(function() { var obj = $(this); var initialText = obj.val(); obj.focus(function () { if(obj.val() === initialText) obj.val(""); }); obj.blur(function () { if(obj.val() ==="") obj.val(initialText); }); }); }; })(jQuery); </code></pre> <p>Then to use your plugin:</p> <pre><code>$(document).ready(function() { $('.watermark').watermark(); }); </code></pre> <p>Additionally as tvanfosson you'll want to include the <code>var</code> keyword on your <code>obj</code>. If you don't have the <code>var</code> keyword on your <code>obj</code> declaration only the last textbox will have the watermark effect.</p> http://stackoverflow.com/questions/327996/http-post-xml-to-rest-singleton-service-throws-notsupportedexception 0 HTTP POST XML to REST Singleton Service throws NotSupportedException bendewey 2008-11-29T20:51:37Z 2009-11-02T21:00:02Z <p>I have the following REST Host in a silverlight application. I'm getting a NotSupportedException on the EndGetResponse() call of the Save Method. In this sample I'm using the default config for a REST Singleton Service from the WCF REST Starter Kit, with the exception of some changes to the OnAddItem method to accept updates via a POST (since silverlight PUT isn't supported). I'm getting a StatusCode 200 when I make a post from Fiddler. The Service is hosted on the same site as the SilverlightPage, so I don't have any x-domain policy stuff setup. Am I missing something obvious?</p> <p>The Load methods work fine.</p> <pre><code>namespace SilverlightApplication2 { public class Customer { public string Name { get; set; } } public class RestHost { public event EventHandler Loaded = delegate { }; public event EventHandler Error = delegate { }; public Customer Customer { get; set; } public string ErrorMessage { get; set; } public RestHost() { Customer = new Customer(); Load(); } private void Load() { // begin loading customer var request = (HttpWebRequest)WebRequest.Create(new Uri("http://localhost:41078/SilverlightApplication2.Web/Service.svc/")); request.BeginGetResponse(delegate(IAsyncResult result) { try { var resp = request.EndGetResponse(result); var doc = XDocument.Load(resp.GetResponseStream()); Customer.Name = doc.Element("SampleItem").Element("Value").Value; Loaded(this, EventArgs.Empty); } catch (Exception ex) { ErrorMessage = ex.GetBaseException().Message; Error(this, EventArgs.Empty); } }, null); } public void Save() { var request = (HttpWebRequest)WebRequest.Create(new Uri("http://localhost:41078/SilverlightApplication2.Web/Service.svc/")); request.Method = "POST"; request.ContentType = "application/xml"; request.BeginGetRequestStream(delegate(IAsyncResult result) { var postDoc = new XDocument( new XElement("SampleItem", new XAttribute(XNamespace.Xmlns + "i", "http://www.w3.org/2001/XMLSchema-instance"), new XElement("Value", Customer.Name) ) ); postDoc.Save(request.EndGetRequestStream(result)); request.BeginGetResponse(delegate(IAsyncResult result2) { try { var resp = request.EndGetResponse(result2); // NotSupportedExecption here var doc = XDocument.Load(resp.GetResponseStream()); Customer.Name = doc.Element("SampleItem").Element("Value").Value; Loaded(this, EventArgs.Empty); } catch (Exception ex) { ErrorMessage = ex.GetBaseException().Message; Error(this, EventArgs.Empty); } }, null); }, null); } } } </code></pre> <p>Also here is the Page Code as well</p> <pre><code>&lt;UserControl x:Class="SilverlightApplication2.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="400" Height="300"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;StackPanel Width="100" HorizontalAlignment="Left" Margin="15"&gt; &lt;TextBlock&gt;Customer&lt;/TextBlock&gt; &lt;TextBox x:Name="CustomerName" /&gt; &lt;TextBlock Foreground="LightGray" x:Name="LoadingLabel" Margin="5,-19,0,0"&gt;Loading ...&lt;/TextBlock&gt; &lt;Button Content="Save" Margin="0,5,0,0" Click="Button_Click" /&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>Code-Behind</p> <pre><code>namespace SilverlightApplication2 { public partial class Page : UserControl { private RestHost _host; public Page() { InitializeComponent(); _host = new RestHost(); _host.Loaded += delegate { this.Dispatcher.BeginInvoke(delegate { this.LoadingLabel.Visibility = Visibility.Collapsed; this.CustomerName.Text = _host.Customer.Name; }); }; _host.Error += delegate { this.Dispatcher.BeginInvoke(delegate { HtmlPage.Window.Alert(_host.ErrorMessage); }); }; } private void Button_Click(object sender, RoutedEventArgs e) { _host.Customer.Name = this.CustomerName.Text; _host.Save(); } } } </code></pre> http://stackoverflow.com/questions/1661395/how-do-i-show-something-after-mouseover-longer-than-1-second-with-jquery-qtip/1661459#1661459 0 Answer by bendewey for How do I show something after mouseover longer than 1 second with jQuery QTip bendewey 2009-11-02T13:55:10Z 2009-11-02T13:55:10Z <p>Set the <a href="http://craigsworks.com/projects/qtip/docs/reference/#show" rel="nofollow"><code>show.delay</code></a> property on the qTip plugin.</p> <pre><code>$(function() { $('#myDiv').qtip({ content: 'My tooltip', show: { delay: 1000 } }); }); </code></pre> http://stackoverflow.com/questions/1659202/loading-html-content-containing-inline-script-via-jquery/1659465#1659465 1 Answer by bendewey for Loading HTML content containing inline script via jQuery bendewey 2009-11-02T04:54:55Z 2009-11-02T04:54:55Z <p>There is an issue when you use document.write. If you have the ability to modify the source pages you can modify them to use the innerHtml technique instead.</p> <p>To do so you would change something like this:</p> <pre><code>&lt;div id="testDiv"&gt; &lt;script type="text/javascript"&gt; document.write("&lt;img src='image1.jpg' alt='' /&gt;"); &lt;/script&gt; &lt;/div&gt; </code></pre> <p>To this:</p> <pre><code>&lt;div id="testDiv"&gt; &lt;div&gt; &lt;script type="text/javascript"&gt; document.getElementByid('testDiv').innerHTML = "&lt;img src='image1.jpg' alt='' /&gt;"; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1659157/wpf-listbox-display-properties-of-the-itemsource/1659171#1659171 1 Answer by bendewey for WPF ListBox - Display properties of the ItemSource bendewey 2009-11-02T02:28:17Z 2009-11-02T02:28:17Z <p>You can set a <code>DataTemplate</code> on the <code>ItemTemplate</code> property of the <code>ListBox</code>:</p> <pre><code>&lt;ListBox ItemSource="{Binding}"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate DataType="tfs:WorkItem"&gt; &lt;StackPanel&gt; &lt;TextBlock Text="{Binding Title}" /&gt; &lt;!-- Others --&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> http://stackoverflow.com/questions/1540931/jquery-call-to-javascript-function-inside-live-never-occurs/1540968#1540968 0 Answer by bendewey for jquery call to javascript function inside LIVE Never occurs bendewey 2009-10-08T22:54:57Z 2009-10-08T22:54:57Z <p>There seems to be a syntax error in your function callback remove the word <code>delete</code></p> <pre><code> $('#trash{$roleId}').live('click',function(e) { e.preventDefault(); alert('trash clicked'); // ... return false; }); </code></pre> http://stackoverflow.com/questions/1540808/how-can-i-know-a-row-index-while-iterating-with-foreach/1540820#1540820 0 Answer by bendewey for How can I know a row index while iterating with foreach? bendewey 2009-10-08T22:17:09Z 2009-10-08T22:17:09Z <p>You can use the standard <code>for</code> loop to get the index</p> <pre><code>for(int i=0; i&lt;temptable.Rows.Count; i++) { var index = i; var row = temptable.Rows[i]; } </code></pre> http://stackoverflow.com/questions/1540658/net-asynchronous-stream-read-write/1540799#1540799 1 Answer by bendewey for .NET Asynchronous stream read/write bendewey 2009-10-08T22:12:05Z 2009-10-08T22:12:05Z <p>You are going to need to use the callback from the NetStream read to handle this. And frankly it might be easier to wrap the copying logic into its own class so that you can maintain the instance of the active Streams. </p> <p>This is how I'd approach it (not tested):</p> <pre><code>public class Assignment1 { public static void NetToFile(NetworkStream net, FileStream file) { var copier = new AsyncStreamCopier(net, file); copier.Start(); } public static void NetToFile_Option2(NetworkStream net, FileStream file) { var completedEvent = new ManualResetEvent(false); // copy as usual but listen for completion var copier = new AsyncStreamCopier(net, file); copier.Completed += (s, e) =&gt; completedEvent.Set(); copier.Start(); completedEvent.WaitOne(); } /// &lt;summary&gt; /// The Async Copier class reads the input Stream Async and writes Synchronously /// &lt;/summary&gt; public class AsyncStreamCopier { public event EventHandler Completed; private readonly Stream input; private readonly Stream output; private byte[] buffer = new byte[4096]; public AsyncStreamCopier(Stream input, Stream output) { this.input = input; this.output = output; } public void Start() { GetNextChunk(); } private void GetNextChunk() { input.BeginRead(buffer, 0, buffer.Length, InputReadComplete, null); } private void InputReadComplete(IAsyncResult ar) { // input read asynchronously completed int bytesRead = input.EndRead(ar); if (bytesRead == 0) { RaiseCompleted(); return; } // write synchronously output.Write(buffer, 0, bytesRead); // get next GetNextChunk(); } private void RaiseCompleted() { if (Completed != null) { Completed(this, EventArgs.Empty); } } } } </code></pre> http://stackoverflow.com/questions/1540183/how-can-i-build-a-string-from-a-collection-with-linq/1540249#1540249 1 Answer by bendewey for How can I build a string from a collection with Linq? bendewey 2009-10-08T20:32:03Z 2009-10-08T20:38:47Z <p>I created these extension methods that can be used to concatenate any number of items in a collection. It may be a bit overkill for you example, but if you need to concatenate items that are objects and not strings it can work great.</p> <h2>Usage:</h2> <pre><code>fileContent = field.Values.Contatenate(Environment.NewLine); </code></pre> <h2>Extensions:</h2> <pre><code>public static class EnumerableExtensions { public static string Concatenate&lt;T&gt;(this IEnumerable&lt;T&gt; source, string seperator) { return Concatenate(source, i =&gt; i.ToString(), seperator); } public static string Concatenate&lt;T&gt;(this IEnumerable&lt;T&gt; source, Func&lt;T, string&gt; selector, string seperator) { var builder = new StringBuilder(); foreach (var item in source) { if (builder.Length &gt; 0) builder.Append(seperator); builder.Append(selector(item)); } return builder.ToString(); } public static string ToCsv&lt;T&gt;(this IEnumerable&lt;T&gt; source) { return Concatenate(source, i =&gt; i.ToString(), ","); } public static string ToCsv&lt;T&gt;(this IEnumerable&lt;T&gt; source, Func&lt;T, string&gt; selector) { return Concatenate(source, selector, ","); } } </code></pre> http://stackoverflow.com/questions/1539929/a-good-aproach-to-events-in-mvvm/1539993#1539993 0 Answer by bendewey for A good aproach to events in MVVM bendewey 2009-10-08T19:43:09Z 2009-10-08T19:43:09Z <p>Silverlight doesn't contain a Command button like the Button in WPF. The way we get around it there is to create a custom control that contains a command and maps that event to the command. Something like this should work.</p> <pre><code>public class CommandListBoxItem : ListBoxItem { public CommandListBoxItem() { DoubleClick += (sender, e) =&gt; { if (Command != null &amp;&amp; Command.CanExecute(CommandParameter)) Command.Execute(CommandParameter); }; } #region Bindable Command Properties public static DependencyProperty DoubleClickCommandProperty = DependencyProperty.Register("DoubleClickCommand", typeof(ICommand), typeof(CommandListBoxItem), new PropertyMetadata(null, DoubleClickCommandChanged)); private static void DoubleClickCommandChanged(DependencyObject source, DependencyPropertyChangedEventArgs args) { var item = source as CommandListBoxItem; if (item == null) return; item.RegisterCommand(args.OldValue as ICommand, args.NewValue as ICommand); } public ICommand DoubleClickCommand { get { return GetValue(DoubleClickCommandProperty) as ICommand; } set { SetValue(DoubleClickCommandProperty, value); } } public static DependencyProperty DoubleClickCommandParameterProperty = DependencyProperty.Register("DoubleClickCommandParameter", typeof(object), typeof(CommandListBoxItem), new PropertyMetadata(null)); public object DoubleClickCommandParameter { get { return GetValue(DoubleClickCommandParameterProperty); } set { SetValue(DoubleClickCommandParameterProperty, value); } } #endregion private void RegisterCommand(ICommand oldCommand, ICommand newCommand) { if (oldCommand != null) oldCommand.CanExecuteChanged -= HandleCanExecuteChanged; if (newCommand != null) newCommand.CanExecuteChanged += HandleCanExecuteChanged; HandleCanExecuteChanged(newCommand, EventArgs.Empty); } private void HandleCanExecuteChanged(object sender, EventArgs args) { if (DoubleClickCommand != null) IsEnabled = DoubleClickCommand.CanExecute(DoubleClickCommandParameter); } } </code></pre> <p>Then when you create your ListBoxItems you bind to the new Command Property.</p> <pre><code>&lt;local:CommandListBoxItem DoubleClickCommand="{Binding ItemDoubleClickedCommand}" /&gt; </code></pre> http://stackoverflow.com/questions/1539567/jquery-hover-over-child-elements-makes-quirky-effects/1539678#1539678 2 Answer by bendewey for jQuery hover over child elements makes quirky effects bendewey 2009-10-08T18:38:11Z 2009-10-08T18:53:52Z <p>The <code>mouseover</code> and <code>mouseout</code> events are also fired when the mouse enters and leaves any child elements. Try using the <code>mouseenter</code> and <code>mouseleave</code> events instead.</p> <p>Unfortunately, the <a href="http://docs.jquery.com/Events/live#typefn" rel="nofollow">live</a> method doesn't currently support these methods. You'll have to bind them manually when you add/remove links.</p> <pre><code>function toggleDelete() { $(this)[($(this).hasClass('hover') ? 'remove' : 'add') + 'Class']('hover'); $(this).find('a.trash').toggle(); } $('div.link').bind('mouseenter, mouseleave', toggleDelete); $('.add').click(function(e) { var link = $('&lt;a /&gt;').addClass('link'); link.bind('mouseenter, mouseleave', toggleDelete); $('.parent').append(link); }); </code></pre> http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871410#871410 23 Answer by bendewey for Why do I need an IoC container as opposed to straightforward DI code? bendewey 2009-05-16T01:13:12Z 2009-10-07T22:11:50Z <p>In my opinion the number one benefit of an IoC is the ability to centralize the configuration of your dependencies.</p> <p>If you're currently using Dependency injection your code might look like this</p> <pre><code>public class CustomerPresenter { public CustomerPresenter() : this(new CustomerView(), new CustomerService()) {} public CustomerPresenter(ICustomerView view, ICustomerService service) { // init view/service fields } // readonly view/service fields } </code></pre> <p>If you used a static IoC class, as opposed to the, IMHO the more confusing, configuration files, you could have something like this:</p> <pre><code>public class CustomerPresenter { public CustomerPresenter() : this(IoC.Resolve&lt;ICustomerView&gt;(), IoC.Resolve&lt;ICustomerService&gt;()) {} public CustomerPresenter(ICustomerView view, ICustomerService service) { // init view/service fields } // readonly view/service fields } </code></pre> <p>Then, your Static IoC class would look like this, I'm using Unity here.</p> <pre><code>public static IoC { private static readonly IUnityContainer _container; static IoC() { InitializeIoC(); } static void InitializeIoC() { _container = new UnityContainer(); _container.RegisterType&lt;ICustomerView, CustomerView&gt;(); _container.RegisterType&lt;ICustomerService, CustomerService&gt;(); // all other RegisterTypes and RegisterInstances can go here in one file. // one place to change dependencies is good. } } </code></pre> http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871513#871513 18 Answer by bendewey for Why do I need an IoC container as opposed to straightforward DI code? bendewey 2009-05-16T02:12:21Z 2009-10-07T15:24:38Z <p>IoC Containers are also good for loading deeply nested class dependencies. For example if you had the following code using Depedency Injection.</p> <pre><code>public void GetPresenter() { var presenter = new CustomerPresenter(new CustomerService(new CustomerRepository(new DB()))); } class CustomerPresenter { private readonly ICustomerService service; public CustomerPresenter(ICustomerService service) { this.service = service; } } class CustomerService { private readonly IRespoistory&lt;Customer&gt; repository; public CustomerService(IRespoistory&lt;Customer&gt; repository) { this.repository = repository; } } class CustomerRepository : IRespoistory&lt;Customer&gt; { private readonly DB db; public CustomerRepository(DB db) { this.db = db; } } class DB { } </code></pre> <p>If you had all of these dependencies loaded into and IoC container you could Resolve the CustomerService and the all the child dependencies will automatically get resolved.</p> <p>For example:</p> <pre><code>public static IoC { private IUnityContainer _container; static IoC() { InitializeIoC(); } static void InitializeIoC() { _container = new UnityContainer(); _container.RegisterType&lt;ICustomerService, CustomerService&gt;(); _container.RegisterType&lt;IRepository&lt;Customer&gt;, CustomerRepository&gt;(); } static T Resolve&lt;T&gt;() { return _container.Resolve&lt;T&gt;(); } } public void GetPresenter() { var presenter = IoC.Resolve&lt;CustomerPresenter&gt;(); // presenter is loaded and all of its nested child dependencies // are automatically injected // - // Also, note that only the Interfaces need to be registered // the concrete types like DB and CustomerPresenter will automatically // resolve. } </code></pre> http://stackoverflow.com/questions/1528368/how-can-i-query-the-best-buy-remix-api-w-jquery/1528409#1528409 1 Answer by bendewey for How can I query the Best Buy Remix API w/ jQuery? bendewey 2009-10-06T22:22:22Z 2009-10-07T13:50:00Z <p>When disabling the cache setting for jQuery ajax it will attempt to append a timestamp to the querystring. This may be the problem your experiencing. Try calling the function with caching explicitly enabled.</p> <pre><code>$.ajax({ type: "GET", url: "http://api.remix.bestbuy.com/v1/products(search=" + escape(searchCriteria) + ")?apiKey=" + hhApiKey + "&amp;format=json&amp;callback=?", cache: true, success: function() { alert('success'); }, dataType: 'json' }); </code></pre> http://stackoverflow.com/questions/1528324/how-to-solve-a-http-error-404-3-not-found-error/1528377#1528377 1 Answer by bendewey for How to solve a "HTTP Error 404.3 - Not Found" error? bendewey 2009-10-06T22:11:04Z 2009-10-06T22:11:04Z <p>Click Start -> Run <code>cmd</code> and type:</p> <pre><code>cd "\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation" ServiceModelReg.exe -i </code></pre> http://stackoverflow.com/questions/1528329/asp-net-gridview-textbox-problem/1528357#1528357 1 Answer by bendewey for ASP.NET GridView TextBox Problem bendewey 2009-10-06T22:06:54Z 2009-10-06T22:06:54Z <p>When are you calling DataBind() on the Grid or Page? Often times developers will Bind the data twice and override the data recieved from Request.Form.</p> <p>Be sure to check the Page.IsPostBack boolean.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { this.myGrid.DataSource = list; this.myGrid.DataBind(); } } </code></pre> http://stackoverflow.com/questions/1527978/check-xml-for-node-that-doesnt-exist-with-jquery/1528279#1528279 1 Answer by bendewey for check xml for node that doesn't exist with jQuery? bendewey 2009-10-06T21:48:40Z 2009-10-06T21:48:40Z <p>Try using the <a href="http://docs.jquery.com/Selectors/attributeEquals#attributevalue" rel="nofollow">attribute equals</a> selector</p> <pre><code>if($('time[value=1-5]').length &gt; 0) { // time 1-5 exists funcA(); } else { // time 1-5 doesn't exists funcB(); } </code></pre> http://stackoverflow.com/questions/1446417/pass-an-object-to-aspx-page-through-wcf-service/1446495#1446495 0 Answer by bendewey for Pass an object to aspx page through WCF service bendewey 2009-09-18T19:45:00Z 2009-09-18T19:45:00Z <p>I would use <a href="http://www.fiddlertool.com/" rel="nofollow">Fiddler</a> or the <a href="http://projects.nikhilk.net/WebDevHelper/" rel="nofollow">IE Web Developer Helper</a> to determine what results are being recieved from the server.</p> <p>Can you update the question with the results after you've determined what's being returned to the web browser?</p> http://stackoverflow.com/questions/292265/new-cool-features-of-c-4-0 4 New Cool Features of C# 4.0 bendewey 2008-11-15T07:19:57Z 2009-09-15T21:02:08Z <p>What are the coolest new features that you guys are looking for, or that you've heard are releasing in c# 4.0.</p> http://stackoverflow.com/questions/1360103/creating-a-loginstatuscontrol-in-silverlight 0 Creating a LoginStatusControl in Silverlight bendewey 2009-09-01T00:58:53Z 2009-09-15T14:56:38Z <p>I'm trying to create a login status control in silverlight where I will use multiple ControlTemplates to define conditional content.</p> <p>So far I have created a LoginStatusControl</p> <pre><code>public class LoginStatusControl : ContentControl { // these are actually Depedency Properties public ControlTemplate LoggedInTemplate { get; set; } public ControlTemplate AnonymousTemplate { get; set; } public override void OnApplyTemplate() { base.OnApplyTemplate(); var user = this.DataContext as User; if (user == null &amp;&amp; this.AnonymousTemplate != null) { this.Template = this.AnonymousTemplate; } else if (this.LoggedInTemplate != null) { this.Template = this.LoggedInTemplate; } } } </code></pre> <p>Then I've defined the templates in a Style. </p> <pre><code>&lt;Style x:Key="UserStatusStyle" TargetType="local:LoginStatusControl"&gt; &lt;Setter Property="LoggedInTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;TextBlock Text="User " /&gt; &lt;TextBlock Text="{Binding FirstName}" /&gt; &lt;TextBlock Text=" " /&gt; &lt;TextBlock Text="{Binding LastName}" /&gt; &lt;TextBlock Text=" is logged in" /&gt; &lt;/StackPanel&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="AnonymousTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;TextBlock Text="Please create your profile" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>I'm having difficulty getting the conditional templates connected to override the ControlTemplate.</p> <p>While searching I found <a href="http://stackoverflow.com/questions/1319752/wpf-custom-control-for-side-by-side-layout">this question</a> and tried to use template binding but I couldn't get that to work. </p> <p>Is there anyway to get this conditional templates to display if the user is logged in or not? Is there another way of solving this problem that I'm missing? I'm hoping to come up with a solution that can update the template dynamically when the DataContext of the control changes.</p> http://stackoverflow.com/questions/1360103/creating-a-loginstatuscontrol-in-silverlight/1427705#1427705 0 Answer by bendewey for Creating a LoginStatusControl in Silverlight bendewey 2009-09-15T14:56:38Z 2009-09-15T14:56:38Z <p>Well, I ended up going with a <code>ContentContent's Content</code> property and providing conditional DataTemplates.</p> <p>Here is the Control:</p> <pre><code>public class LoginStatusControl : ContentControl { public DataTemplate LoggedInTemplate { get { return (DataTemplate)GetValue(LoggedInTemplateProperty); } set { SetValue(LoggedInTemplateProperty, value); } } // Using a DependencyProperty as the backing store for LoggedInTemplate. This enables animation, styling, binding, etc... public static readonly DependencyProperty LoggedInTemplateProperty = DependencyProperty.Register("LoggedInTemplate", typeof(DataTemplate), typeof(LoginStatusControl), new PropertyMetadata(null)); public DataTemplate AnonymousTemplate { get { return (DataTemplate)GetValue(AnonymousTemplateProperty); } set { SetValue(AnonymousTemplateProperty, value); } } // Using a DependencyProperty as the backing store for AnonymousTemplate. This enables animation, styling, binding, etc... public static readonly DependencyProperty AnonymousTemplateProperty = DependencyProperty.Register("AnonymousTemplate", typeof(DataTemplate), typeof(LoginStatusControl), new PropertyMetadata(null)); public LoginStatusControl() { DefaultStyleKey = typeof(LoginStatusControl); } public override void OnApplyTemplate() { UpdateTemplate(); base.OnApplyTemplate(); } private void UpdateTemplate() { var content = (ContentControl)base.GetTemplateChild("LoginControl"); if (content == null) return; var user= this.DataContext as User; if (user == null &amp;&amp; this.AnonymousTemplate != null) { content.Content = this.DataContext; content.ContentTemplate = this.AnonymousTemplate; } else if (this.LoggedInTemplate != null) { content.Content = this.DataContext; content.ContentTemplate = this.LoggedInTemplate; } } } </code></pre> <p>And here is the Default Style.</p> <pre><code> &lt;Style x:Key="LoginStatusStyle" TargetType="controls:LoginStatusControl"&gt; &lt;Setter Property="LoggedInTemplate"&gt; &lt;Setter.Value&gt; &lt;DataTemplate&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;TextBlock Text="User: "/&gt; &lt;TextBlock Text="{Binding FirstName}" FontWeight="Bold" /&gt; &lt;TextBlock Text=" " /&gt; &lt;TextBlock Text="{Binding LastName}" FontWeight="Bold" /&gt; &lt;TextBlock Text=" is logged in" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="AnonymousTemplate"&gt; &lt;Setter.Value&gt; &lt;DataTemplate&gt; &lt;TextBlock Text="Please create your profile" /&gt; &lt;/DataTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;ContentControl x:Name="LoginControl" Margin="10,0" VerticalAlignment="Center" /&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/1331448/is-it-better-to-yield-return-lookup-lists-or-preload-a-static-list-in-c 1 Is it better to yield return lookup lists or preload a static list in c#? bendewey 2009-08-25T22:49:51Z 2009-08-26T00:46:39Z <p>I have a simple lookup list that I will use to populate a dropdown in Silverlight. In this example I'm using US States.</p> <p>I'm trying to figure out if its better to return a static list or use the <a href="http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx" rel="nofollow">yield</a> keyword. Of the following two pieces of code, which is the preferred and why?</p> <p><strong>Version 1:</strong> Using yield return</p> <pre><code>public class States { public static IEnumerable&lt;string&gt; GetNames() { yield return "Alabama"; yield return "Alaska"; yield return "Arizona"; yield return "Arkansas"; yield return "California"; yield return "Others ..."; } } </code></pre> <p><strong>Version 2:</strong> Return the list</p> <pre><code>public class States { private static readonly IList&lt;string&gt; _names; static States() { _names = new List&lt;string&gt;() {"Alabama", "Alaska", "Arizona", "Arkansas", "California", "Others ..." }; } public static IList&lt;string&gt; GetNames() { return _names; } } </code></pre> http://stackoverflow.com/questions/1082283/restructuring-html-using-jquery/1082330#1082330 3 Answer by bendewey for Restructuring HTML using jQuery bendewey 2009-07-04T14:46:27Z 2009-07-04T14:46:27Z <p>Give this a try:</p> <pre><code> $(document).ready(function(){ $('#restructure').toggle( function() { alert('removing structure'); $("#modules .column_left, #modules .column_right").moveToGrandparent(); $(".two_column_box").remove(); }, function() { alert('replacing structure'); var next = $('#modules &gt; .column_left:first, #modules &gt; .column_right:first'); while (next.length &gt; 0) { var wrapper = $("&lt;div /&gt;").addClass("two_column_box"); next.wrapAll(wrapper); next = $('#modules &gt; .column_left:first, #modules &gt; .column_right:first'); } } ); }); (function($) { $.fn.moveToGrandparent = function() { return $(this).each(function() { $(this).parent().parent().append($(this)); }); }; })(jQuery); </code></pre> <p>Although you're removing structure code worked, I re-wrote it to use a plugin. As for the replacing structure, I'm using the jQuery <a href="http://docs.jquery.com/Manipulation/wrapAll" rel="nofollow"><code>wrapAll</code></a> method with a loop that gets the first elements until there aren't any elements remaining.</p> <p>HTH, Ben</p> http://stackoverflow.com/questions/1082224/how-do-you-test-that-a-ienumerablesomeclass-has-all-items-of-class-someclass-in/1082245#1082245 0 Answer by bendewey for How do you Test that a IEnumerable<SomeClass> has all items of class SomeClass in MBunit? bendewey 2009-07-04T13:49:06Z 2009-07-04T14:09:24Z <p>I didn't see anything in the MBUnit <a href="http://mbunit.tigris.org/source/browse/mbunit/src/MbUnit.Core/Framework/CollectionAssert.cs?view=markup&amp;content-type=text%2Fvnd.viewcvs-markup" rel="nofollow"><code>CollectionAssert</code></a> Class that could help you here</p> <p>You can easily write your own though (untested).</p> <pre><code>public class MyCollectionAssert { public void CollectionAssert(IEnumerable source, Predicate&lt;object&gt; assertion) { foreach(var item in source) { Assert.IsTrue(assertion(item)); } } public void AllAreInstancesOfType(IEnumerable source, Type type) { return CollectionAssert(source, o =&gt; o.GetType() == type); } } </code></pre> <p>I assuming you actually mean IEnumerable and not <code>IEnumerable&lt;SomeClass&gt;</code> which the compiler enforces the type safety of. To use this extension method call:</p> <pre><code>MyCollectionAssert.AllAreInstancesOfType(myList, typeof(SomeClass)); </code></pre> http://stackoverflow.com/questions/1082243/printing-all-spreadsheet-names-only-in-a-workbook/1082264#1082264 2 Answer by bendewey for Printing all spreadsheet names only in a workbook. bendewey 2009-07-04T14:03:30Z 2009-07-04T14:03:30Z <p>Assuming you using VBA and not .NET you could write a sub routine similar to this. The same objects and names are available in .NET.</p> <pre><code>Sub ShowTabNames() Dim s As Worksheet Dim tabs As String For Each s In ActiveWorkbook.Worksheets If Len(tabs) &gt; 0 Then tabs = tabs &amp; ", " tabs = tabs &amp; s.Name Next MsgBox tabs End Sub </code></pre> http://stackoverflow.com/questions/1040884/update-sql-table-with-bigint-field-from-vba-ms-access/1040945#1040945 0 Answer by bendewey for Update SQL table with bigint field from VBA (MS Access) bendewey 2009-06-24T20:55:51Z 2009-06-24T20:55:51Z <p><strong>Data mismatch in criteria expression</strong> usually means that you SQL Syntax is wrong. Try copying the resulting SQL into a new Query in MS Access and running directly from Access.</p> <p>What is myVar in your example? What is the resulting SQL?</p> http://stackoverflow.com/questions/528372/overloaded-use-of-yield-return 5 Overloaded use of yield return bendewey 2009-02-09T14:36:59Z 2009-06-18T13:54:59Z <p>I don't have much experience with using the yield keyword. I have these IEnumerable&lt;T&gt; extensions for Type Conversion.</p> <p>My question is does the first overloaded method have the same yield return effect that I'm getting from the second method?</p> <pre><code>public static IEnumerable&lt;TTo&gt; ConvertFrom&lt;TTo, TFrom&gt;(this IEnumerable&lt;TFrom&gt; toList) { return ConvertFrom&lt;TTo, TFrom&gt;(toList, TypeDescriptor.GetConverter(typeof(TTo))); } public static IEnumerable&lt;TTo&gt; ConvertFrom&lt;TTo, TFrom&gt;(this IEnumerable&lt;TFrom&gt; toList, TypeConverter converter) { foreach (var t in toList) yield return (TTo)converter.ConvertFrom(t); } </code></pre> http://stackoverflow.com/questions/1006500/what-is-the-default-session-timeout-value-in-asp-net/1006622#1006622 7 Answer by bendewey for What is the default session timeout value in ASP.NET? bendewey 2009-06-17T12:13:28Z 2009-06-17T12:49:10Z <p>The machine.config can override the default value for the server's Session State, among others.</p> <blockquote> <p>C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config</p> </blockquote> <p>PS. ASP.NET v3.0 and v3.5 also use the v2.0.x machine config.</p> http://stackoverflow.com/questions/1661395/how-do-i-show-something-after-mouseover-longer-than-1-second-with-jquery-qtip/1661459#1661459 Comment by bendewey on How do I show something after mouseover longer than 1 second with jQuery QTip bendewey 2009-11-03T15:21:24Z 2009-11-03T15:21:24Z in your sample your binding to mouseover/out, you should be able to just have my code on the top of your page. http://stackoverflow.com/questions/1659202/loading-html-content-containing-inline-script-via-jquery Comment by bendewey on Loading HTML content containing inline script via jQuery bendewey 2009-11-02T02:47:30Z 2009-11-02T02:47:30Z by inline script to you mean <code>script</code> tags or onclick=someScript? http://stackoverflow.com/questions/1659202/loading-html-content-containing-inline-script-via-jquery Comment by bendewey on Loading HTML content containing inline script via jQuery bendewey 2009-11-02T02:46:52Z 2009-11-02T02:46:52Z Is the page you're trying to load from on the same domain name? http://stackoverflow.com/questions/1659157/wpf-listbox-display-properties-of-the-itemsource/1659171#1659171 Comment by bendewey on WPF ListBox - Display properties of the ItemSource bendewey 2009-11-02T02:43:13Z 2009-11-02T02:43:13Z @Ray agreed, only use this if you're setting more complicated UI. http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery/1583643#1583643 Comment by bendewey on How to select div in table cell using jQuery bendewey 2009-10-18T02:40:48Z 2009-10-18T02:40:48Z @cletus you should chain the focus and blur calls so they don't load the selector twice. http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery/1583643#1583643 Comment by bendewey on How to select div in table cell using jQuery bendewey 2009-10-18T02:40:02Z 2009-10-18T02:40:02Z @Russ <a href="http://careers.stackoverflow.com/" rel="nofollow">careers.stackoverflow.com</a> uses an entry form that has a message on each row. I'm with cletus that he's looking for something like this. http://stackoverflow.com/questions/1583620/how-to-select-div-in-table-cell-using-jquery/1583634#1583634 Comment by bendewey on How to select div in table cell using jQuery bendewey 2009-10-18T02:37:46Z 2009-10-18T02:37:46Z -1 Unfortunately this wont work if you have more than 1 row. It will show messages on all row. http://stackoverflow.com/questions/1583721/removing-css-style-for-element-by-id/1583837#1583837 Comment by bendewey on removing css style for element by ID bendewey 2009-10-18T02:35:10Z 2009-10-18T02:35:10Z +1 I think you've covered all the scenarios here. http://stackoverflow.com/questions/1569889/jquery-move-table-row/1569895#1569895 Comment by bendewey on jQuery: Move Table Row? bendewey 2009-10-15T01:48:38Z 2009-10-15T01:48:38Z +1 beat me to it http://stackoverflow.com/questions/604860/interesting-test-of-javascript-regexp/604884#604884 Comment by bendewey on Interesting test of Javascript RegExp bendewey 2009-10-14T17:18:05Z 2009-10-14T17:18:05Z +1 thanks for the help, setting reg.lastIndex=0 before each test solved my problem. http://stackoverflow.com/questions/1447055/wpf-binding-fails-why Comment by bendewey on WPF Binding Fails. Why? bendewey 2009-09-18T22:23:03Z 2009-09-18T22:23:03Z Can you attach the code for your converter as well? What's wrong with setting the GroupBox to a Brush instead of the SolidColorBrush.Color property? http://stackoverflow.com/questions/1446490/setting-styles-through-code-on-html-elements-is-there-better-way/1446521#1446521 Comment by bendewey on Setting styles through code on html elements. Is there better way? bendewey 2009-09-18T22:13:40Z 2009-09-18T22:13:40Z The Visible attribute when using runat=&quot;server&quot; will not render the HTML. (ie. you javascript won't find the element because it won't exist) http://stackoverflow.com/questions/1446490/setting-styles-through-code-on-html-elements-is-there-better-way/1446521#1446521 Comment by bendewey on Setting styles through code on html elements. Is there better way? bendewey 2009-09-18T19:54:38Z 2009-09-18T19:54:38Z This could cause a negative effect if Javascript is planning on dynamically showing the table later on, because setting the table to not Visible prevents the HTML from writing to the browser http://stackoverflow.com/questions/1319752/wpf-custom-control-for-side-by-side-layout/1332815#1332815 Comment by bendewey on WPF Custom Control for Side by Side Layout bendewey 2009-09-01T00:39:14Z 2009-09-01T00:39:14Z +1 this is exactly what I'm looking for. Do you have any links to complete samples? http://stackoverflow.com/questions/1331448/is-it-better-to-yield-return-lookup-lists-or-preload-a-static-list-in-c/1331586#1331586 Comment by bendewey on Is it better to yield return lookup lists or preload a static list in c#? bendewey 2009-08-26T00:15:16Z 2009-08-26T00:15:16Z do you mean <code>yield return</code> in your sample?