RogerTwose
Name: RogerTwose
Score: 3,331.21
Last Seen: 1127 days, 19 hours, 3 minutes ago
Member Since: 14 October, 2009
DotNetShoutout
atom rss
7
Shouts

Sharing the goodness that is VB : Add Spark to Your OData Consuming Data Services in Excel 2010 Part 2 - Beth Massi

published 1127 days, 12 hours, 54 minutes ago posted by jantujantu 1128 days, 13 hours, 51 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 10:12:09 AM GMT
Last post I talked about how you can create your own WCF data services (OData) and use PowerPivot to do some powerful analysis inside Excel 2010 as well as how to use the new sparklines feature. If you missed it:Add Spark to Your OData: Consuming Data Services in Excel 2010 Part 1In this post I want to show how you can create your own Excel client to consume and analyze data via an OData service exp... (more)
category: Smart Client | clicked: 3 | 1 comment | | source: blogs.msdn.com
tags: ADO.NET Data Services, Visual Basic, article, VS2010, WCF Data Services, DevCenter, VSTO, Sharepoint, OData
9
Shouts

Back to (Parallel) Basics Do you really want to do that? or Why doesn't the new Parallel.For support BigInteger? - Scott Hanselman

published 1126 days, 13 hours, 31 minutes ago posted by jantujantu 1128 days, 14 hours, 11 minutes ago
Saturday, April 24, 2010 10:32:07 AM GMT Thursday, April 22, 2010 9:52:22 AM GMT
Got an interesting question on Twitter, and got a fabulous answer in email from Stephen Toub, who happens to be my most favorite multi-threaded person. Here's the question. "why doesn't the new parallel.for support BigInteger?"It's an interesting question for a few reasons. First, it's interesting because it's a question about the new parallel stuff in .NET 4 and Visual Studio 2010 that lets the developer take parallel problems that would be very hard and makes them extremely easy. For example, you can... (more)
category: How To | clicked: 51 | comment | | source: www.hanselman.com
tags: Programming, VS2010., Back to Basics
7
Shouts

Enterprise Library 5 Fluent Configuration API - Gil Fink on .Net

published 1127 days, 12 hours, 54 minutes ago posted by gilfgilf 1128 days, 13 hours, 51 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 10:12:46 AM GMT
One of the new Enterprise Library 5 improvements is a new fluent configuration API. In this post I’ll explain the subject and then show how to use the fluent configuration API with the Data Access Application Block. (more)
category: How To | clicked: 9 | comment | | source: blogs.microsoft.co.il
tags: Enterprise Library 5.0, DAAB, Configuration
5
Shouts

Step by step N-tier configuration of Sync services for ADO.NET 2.0 - Microsoft SQL Server Support Blog

published 1127 days, 12 hours, 54 minutes ago posted by KluggerKlugger 1128 days, 12 hours, 1 minute ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 12:02:11 PM GMT
Recently I have worked on couple of cases where customers were trying to use N-tier configuration of Sync services for ADO.NET on IIS. In this blog we will use IIS and setup N-tier configuration of sync service for ADO.NET version 2.0 which comes as part of Microsoft Sync Framework 1.0.  Preparing Environment: We need a development machine that we will use to develop the application, a middle tier server where IIS is installed and... (more)
category: Architecture | clicked: 2 | comment | | source: blogs.msdn.com
tags: ADO.NET, ADO.NET 2.0
8
Shouts

Get a Silverlight XAP signing certificate for cheap thanks to GoDaddy - Tim Heuer

published 1124 days, 16 hours, 23 minutes ago posted by jantujantu 1128 days, 11 hours, 16 minutes ago
Monday, April 26, 2010 7:40:49 AM GMT Thursday, April 22, 2010 12:47:08 PM GMT
One of the new features in Silverlight 4 is the ability to sign your XAP applications so that your out-of-browser trusted applications look more friendly (trusted) to your users, they come from a verified publisher, and they can take advantage of the auto-update APIs in Silverlight. (more)
category: Metro | clicked: 1 | 2 comments | | source: timheuer.com
tags: ClickOnce, godaddy, RIA, Silverlight, Xap, WPF, Expression Blend, riaservices, authenticode, XAML, xapsign, Expression
5
Shouts

Debugging Silverlight Out-of-Browser Applications on 64-bit Windows

published 1127 days, 12 hours, 54 minutes ago posted by http://ailon.livejournal.com/http://ailon.livejournal.com/ 1128 days, 11 hours, 6 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 12:56:54 PM GMT
There’s a concise and to the point guide on debugging Silverlight 3 applications in out of browser (OOB) mode by Jimmy Lewis. Problem is that when you follow it in Visual Studio 2008 running on 64-bit Windows you get this message box when you try to start debugging... (more)
category: Metro | clicked: 0 | comment | | source: devblog.ailon.org
tags: Silverlight, out of browser, Visual Studio
6
Shouts

WPF Input Validation Part 1: Tutorial and examples

published 1127 days, 12 hours, 54 minutes ago posted by VOliveiraVOliveira 1128 days, 10 hours, 52 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 1:11:29 PM GMT
This article will explain the basis of WPF input validation through a basic sample, and then take a step forward on the validation approach in following articles. The requirement is to create a UI control behavior that visually signals validation errors over user input, so when the user submits empty or invalid data on a mandatory field, the input control changes it's appearance or some kind of action takes place, like a validation message box. Then, it should prevent data submission when a button is cli... (more)
category: UX | clicked: 8 | comment | | source: blog.vascooliveira.com
tags: WPF 4, WPF 3.5, ValidationRules, ValidateInput
6
Shouts

SQL SERVER – Create Primary Key with Specific Name when Creating Table « Journey to SQL Authority with Pinal Dave

published 1127 days, 12 hours, 54 minutes ago posted by pinaldavepinaldave 1128 days, 6 hours, 41 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 5:22:31 PM GMT
It is interesting how sometimes the documentation of simple concepts is not available online. I had received email from one of the reader where he has asked how to create Primary key with a specific name when creating the table itself. He said, he knows the method where he can create the table and then apply the primary key with specific name. The attached code was as follows: (more)
category: Data | clicked: 0 | comment | | source: blog.sqlauthority.com
tags: SQL, SQLServer, pinaldave, SQLAuthority
7
Shouts

DotNetRocks - Show #545 - Billy Hollis Live in San Diego

published 1127 days, 12 hours, 54 minutes ago posted by mithumithu 1128 days, 3 hours, 39 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 8:24:20 PM GMT
Carl and Richard talk to Billy Hollis in San Diego on the third stop of the road trip. Billy always has something interesting to talk about. (more)
category: Podcast | clicked: 0 | comment | | source: www.dotnetrocks.com
tags: DotNetRocks, san diego
8
Shouts

The NoSQL Movement, LINQ, and MongoDB - Oh My!

published 1126 days, 13 hours, 31 minutes ago posted by http://mkennedy66996693.myopenid.com/http://mkennedy66996693.myopenid.com/ 1128 days, 2 hours, 34 minutes ago
Saturday, April 24, 2010 10:32:07 AM GMT Thursday, April 22, 2010 9:29:38 PM GMT
Maybe you’ve heard people talking about ditching their SQL Servers and other RDBMS entirely. There is a movement out in the software development world called the "No SQL" movement and it’s taking the web application world by storm. “Insanity!” you may cry, “for where will people put their data if not in a database? Flat files? Tell me we aren’t we going back to flat files.” No, but in the relational model, something does has to give. The N... (more)
category: Architecture | clicked: 1 | comment | | source: www.michaelckennedy.net
tags: OpenSource, SQL, MongoDB, Linq, NoSQL, ASP.NET
9
Shouts

How To Build a Group SMS Application with ASP.NET MVC

published 1126 days, 13 hours, 31 minutes ago posted by http://john-sheehan.com/http://john-sheehan.com/ 1128 days, 17 minutes ago
Saturday, April 24, 2010 10:32:07 AM GMT Thursday, April 22, 2010 11:46:16 PM GMT
A quick walkthrough demonstrating how to build a group SMS application using ASP.NET MVC and Twilio. (more)
category: Web Dev | clicked: 4 | comment | | source: blog.twilio.com
tags: ASP.NET MVC, twilio, REST
6
Shouts

Mindscape releases VS2010 designer for LINQ to SharePoint 2010

published 1127 days, 12 hours, 54 minutes ago posted by traskjdtraskjd 1128 days, 13 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 11:50:45 PM GMT
SharePoint 2010 was released today and one great new feature is LINQ to SharePoint. Unfortunately, working with LINQ to SharePoint involves command line tools and XML configuration. Mindscape Visual Tools for SharePoint provides a VS2010 integrated designer to drag and drop and manage the objects you wish to query. This post talks about the features and offers the first 50 sign ups a FREE copy of the product. (more)
category: Architecture | clicked: 1 | comment | | source: www.mindscape.co.nz
tags: SharePoint 2010, Linq, Sharepoint, Mindscape
7
Shouts

Silverlight 4 Training Kit - ScottGu's Blog

published 1127 days, 12 hours, 54 minutes ago posted by mithumithu 1127 days, 20 hours, 56 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Friday, April 23, 2010 3:07:10 AM GMT
We recently released a new free Silverlight 4 Training Kit that walks you through building business applications with Silverlight 4.  You can browse the training kit online or alternatively download an entire offline version of the training kit.  The training material is structured on teaching how to use the new Silverlight 4 features to build an end to end business application. The training kit includes 8 modules, 25 videos, and several hands on labs. Below is a breakdown and links to all of the conte... (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: .NET, Lab, Download, training kit, Silverlight 4, Visual Studio, ScottGu, applications
5
Shouts

J.D. Meier's Blog : Getting Results the Agile Way: A Word from the Author

published 1130 days, 8 hours, 49 minutes ago posted by impaimpa 1131 days, 8 hours, 51 minutes ago
Tuesday, April 20, 2010 3:14:38 PM GMT Monday, April 19, 2010 3:12:07 PM GMT
Getting Results the Agile Way: A Word from the Author This is an excerpt from my latest book, Getting Results the Agile Way.  It's from the A Word from the Author section.  One of my reader's tells me that this was the most impactful prose for them.  I think because it answers the question, "Why did I write this guide?"  This is yet another reminder to me how important it is to lead with your why. Here it is ...    “Results were the name of the game, and I didn’t have the playbook. When I first joined... (more)
category: Agile | clicked: 2 | comment | | source: blogs.msdn.com
tags: Agile
6
Shouts

JustCode Q1 SP1 –Typing Assistance Improvements - Telerik Blogs - Joshua Holt

published 1130 days, 8 hours, 49 minutes ago posted by StevesSteves 1131 days, 11 hours, 43 minutes ago
Tuesday, April 20, 2010 3:14:38 PM GMT Monday, April 19, 2010 12:20:13 PM GMT
Our goal is to make JustCode’s typing assistance save keystrokes, without getting in your way. As such, typing assistance received quite a few changes for SP1.  It now works faster, and better than ever :) Bracket Completion When you add an  open bracket at the beginning of a line, JustCode will now add the closing bracket for you at the end of the line, even if ... (more)
category: How To | clicked: 0 | comment | | source: blogs.telerik.com
tags: JustCode
7
Shouts

Introducing to Halcyone - Silverlight Application Framework: Silverlight Rest Extensions

published 1130 days, 8 hours, 49 minutes ago posted by KMilKMil 1130 days, 15 hours, 13 minutes ago
Tuesday, April 20, 2010 3:14:38 PM GMT Tuesday, April 20, 2010 8:50:03 AM GMT
In this article Alexey Zakharov is going to introduce a first public component of his silverlight application framework called Halcyone. In this experimental component he provides a simple way for rapid silverlight REST services development. (more)
category: Metro | clicked: 0 | comment | | source: www.silverlightshow.net
8
Shouts

Learning Windows Azure platform Resources - Paul Mehner

published 1129 days, 12 hours, 38 minutes ago posted by iftekharahmedamitiftekharahmedamit 1130 days, 10 hours, 20 minutes ago
Wednesday, April 21, 2010 11:25:35 AM GMT Tuesday, April 20, 2010 1:43:21 PM GMT
I’ve assembled a short list of training materials and utilities that are helpful in learning the Windows Azure platformWindows Azure SDK v1.1 samples http://www.microsoft.com/downloads/details.aspx?FamilyID=dba6a576-468d-4ef6-877e-b14e3c865d3a&displaylang=enWindows Azure Samples: C:\Program Files\Windows Azure SDK\v1.1\Samples.zip Windows Azure platform AppFabric v1.0 Code Samples http://www.microsoft.com/downloads/details.aspx?familyid=39856A03-1490-4283-908F-C8BF0BFAD8A5&displaylang=e... (more)
category: Architecture | clicked: 0 | comment | | source: www.wintellect.com
tags: Windows Azure, Azure
10
Shouts

Releasing Shrinkr – An ASP.NET MVC Url Shrinking Service - Kazi Manzur Rashid's Blog

published 1124 days, 16 hours, 23 minutes ago posted by iftekharahmedamitiftekharahmedamit 1131 days, 11 hours, 32 minutes ago
Monday, April 26, 2010 7:40:49 AM GMT Monday, April 19, 2010 12:31:18 PM GMT
Few months back, I started blogging on developing a Url Shrinking Service in ASP.NET MVC, but could not complete it due to my engagement with my professional projects. Recently, I was able to manage some time for this project to complete the remaining features that we planned for the initial release. So I am announcing the official release... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: Unity, ASP.NET MVC, Shrinkr, ASPNETMVC, Open Source, jQuery, MVC, ASP.NET
8
Shouts

Moses' Blog | Introducing Shrinkr The URL Shrinking Service built with ASP.NET MVC 2

published 1129 days, 12 hours, 38 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1130 days, 8 hours, 29 minutes ago
Wednesday, April 21, 2010 11:25:35 AM GMT Tuesday, April 20, 2010 3:33:55 PM GMT
Few months ago, on September 2009 my friend Rashid started to blog about this open source project “Shrinkr”. And I got a chance to assist him on this. In the last few weeks we were working on preparing this first stable release. And now we got it and it’s live on http://rdir.in. Yesterday Rashid announced the first release which you can download from here. In this post I’m going to show few screenshots of the live Shrinkr. And highlights few technologies used on it. (more)
category: Web Dev | clicked: 0 | comment | | source: mosesofegypt.net
tags: ASPNETMVC, OpenSource, Open Source, OSS
9
Shouts

Free eBook Download – Introducing Microsoft SQL Server 2008 R2 « Journey to SQL Authority with Pinal Dave

published 1129 days, 12 hours, 38 minutes ago posted by pinaldavepinaldave 1130 days, 12 hours, 7 minutes ago
Wednesday, April 21, 2010 11:25:35 AM GMT Tuesday, April 20, 2010 11:56:33 AM GMT
Microsoft Press has published FREE eBook on the most awaiting release of SQL Server 2008 R2. The book is written by Ross Mistry (@rossmistry) and Stacia Misner. Ross is my personal friend and one of the most active book writer in SQL Server Domain. When I see his name on any book, I am sure that it will be high quality and easy to read book. Ross has written many other books, which I am big fan of as well. The details about the book is here: Introducing Microsoft SQL Server 2008 R2, by Ross Mistry and... (more)
category: Data | clicked: 2 | comment | | source: blog.sqlauthority.com
tags: SQL, SQLServer, pinaldave, SQLAuthority
Previous 1 2 3 4 5 6 7 8 9 10 ... 28 29 Next