elsharpo.blogspot.com
{elsharpo}: April 2009
http://elsharpo.blogspot.com/2009_04_01_archive.html
Friday, April 24, 2009. Sharepoint Web Services: creating Lists. Just felt like posting this snippet that shows how to create a List in Sharepoint using the web service that SP provides. Those web services could be found at hhtp:/ superDomain/sites/elSite/ vti bin/Lists.asmx. I hope this snippet stands the test of time in this blog post and I can easily find it one day, or if I can help some poor soul traveling through the Sharepoint ‘realms* the better/. Var listService = new. Var xmlDoc = new. TitleAtt...
elsharpo.blogspot.com
{elsharpo}: Damn, Where did my isolated storage’d file go?
http://elsharpo.blogspot.com/2009/05/damn-where-did-my-isolated-storaged.html
Wednesday, May 6, 2009. Damn, Where did my isolated storage’d file go? LOL, I was doing some work writing some data to IsolatedStorage. Loaded the app, loaded some data that also was supposed to be copied to IsolatedStorage and then I though, cool, no errors, let’s look at that file! Problem being that I could not file the little bastard, I look where where the MSDN. Article tells you to . (below) and couldn’t find it either. (MSDN says look for Microsoft/IsolatedStorage). I couldn’t find it.
elsharpo.blogspot.com
{elsharpo}: Playing around with LINQ to SQL: Using DataLoadOptions. Immediate loading and filtering of related data
http://elsharpo.blogspot.com/2008/04/playing-around-with-linq-to-sql-using.html
Sunday, April 6, 2008. Playing around with LINQ to SQL: Using DataLoadOptions. Immediate loading and filtering of related data. Linq2Sql use deferred execution of queries,. Lazy Load Them() { var. Context.Log = Console. WriteLine(o.OrderID); } }. The only query generated is below:. FROM [dbo].[Orders] AS [t0]. All the child records will be requested when we want, in the below case when we output them. Lazy Load Them() { var. Context.Log = Console. Mydata) { Order Detail. Well, the results are gory, as we...
elsharpo.blogspot.com
{elsharpo}: Playing around with LINQ to SQL: Enumerable.ToDictionary Extension Method
http://elsharpo.blogspot.com/2008/04/playing-around-with-linq-to-sql.html
Sunday, April 6, 2008. Playing around with LINQ to SQL: Enumerable.ToDictionary Extension Method. Playing around with Linq I noticed the Enumerable. ToDictionary. Extension method on IEnumerables T . I found it very handy to store expected results for Unit Testing. Yesterday I was playing around with general stuff and I did some looking around a ToDictionary. We all know what Dictionaries. Are in the programming world right? PProductID,p.ProductName};. 77 Products in Northwind. This example a function to...
elsharpo.blogspot.com
{elsharpo}: Localisation and Profiles: Programmatically changing the user's preferred culture.
http://elsharpo.blogspot.com/2008/03/localisation-and-profiles.html
Monday, March 31, 2008. Localisation and Profiles: Programmatically changing the users preferred culture. A while ago I wrote a post on how to use Localisation in ASP.NET using resource files etc. We'll since then I been asked about how to change the user's culture programmatically by clicking a button or similar. What options do we have? In general, to get manage the user's preferences we have:. Use the browser settings ( not that great as described above but good enough for 80% of the time). Cookies ar...
elsharpo.blogspot.com
{elsharpo}: May 2009
http://elsharpo.blogspot.com/2009_05_01_archive.html
Wednesday, May 6, 2009. Damn, Where did my isolated storage’d file go? LOL, I was doing some work writing some data to IsolatedStorage. Loaded the app, loaded some data that also was supposed to be copied to IsolatedStorage and then I though, cool, no errors, let’s look at that file! Problem being that I could not file the little bastard, I look where where the MSDN. Article tells you to . (below) and couldn’t find it either. (MSDN says look for Microsoft/IsolatedStorage). I couldn’t find it.
dev102.com
A PROGRAMMING JOB INTERVIEW CHALLENGE #14 - 2D GEOMETRY | Dev102.com
http://www.dev102.com/2008/08/05/a-programming-job-interview-challenge-14-2d-geometry
We pay for user submitted tutorials and articles that we publish. Anyone can send in a contribution. 2 Important Things to Notice When Using Lock() Statement. How to Suppress / Disable Script Errors in WPF WebBrowser Control. Pay Attention to the Foreach Implicit Casting. Changing Brush Brightness in WPF/Silverlight. Creating A RESTful API With WCF. 5 Firefox Extensions Any Web Developer Must Have. 10 Visual Studio Shortcuts You Must Know. A Programming Job Interview Challenge. August 5, 2008. Http:/ hon...
elsharpo.blogspot.com
{elsharpo}: Sharepoint Web Services: creating Lists
http://elsharpo.blogspot.com/2009/04/sharepoint-web-services-creating-lists.html
Friday, April 24, 2009. Sharepoint Web Services: creating Lists. Just felt like posting this snippet that shows how to create a List in Sharepoint using the web service that SP provides. Those web services could be found at hhtp:/ superDomain/sites/elSite/ vti bin/Lists.asmx. I hope this snippet stands the test of time in this blog post and I can easily find it one day, or if I can help some poor soul traveling through the Sharepoint ‘realms* the better/. Var listService = new. Var xmlDoc = new. TitleAtt...
elsharpo.blogspot.com
{elsharpo}: February 2008
http://elsharpo.blogspot.com/2008_02_01_archive.html
Friday, February 29, 2008. AjaxControl Toolkit AutoCompleteExtender with WCF. Went to Heroes yesterday and one of the things that really impressed was the session on Windows Communication Foundation. From MSDN, Windows Communication Foundation (WCF) is Microsoft's unified programming model for building service oriented applications. First thing to do of course, is add a new Ajax enabled WCF Service to your solution. Attribute to the interface and the OperationContract. Ok, now we are all set, note that I...