Jemm

Stories submitted by friends of Jemm

Open Tabs to the Right in Visual Studio 2010(www.codersbarn.com)

submitted by BognitBognit(2110) 28 days, 15 hours ago

It really annoys me that files are opened in the tab bar in Visual Studio by default to the left. read more...

add a comment |category: |Views: 3

tags: another

Calling Console Application from Web Form(codersbarn.com)

submitted by BognitBognit(2110) 3 months, 1 day ago

To call the console app from the Web form code-behind we use the Process.Start method. We can avail of the ProcessStartInfo class to set up any properties in advance of making the process call. read more...

add a comment |category: |Views: 4

tags: another

ABMHO --A SYNTAX HIGHLIGHTER THAT RUNS ONLINE AND OFFLINE(blog.typps.com)

submitted by alessandrokicksalessandrokicks(170) 4 months, 9 days ago

The first stable release of Abmho is out. It is by no means the first or only syntax highlighter on the web. There are quite a few out there but the vast majority aren't usable. Abmho can mix languages within the same code snippet, allows you to style your code with live preview and many more features. Perhaps one of the most interesting feature is that it is a silverlight application that runs both on the web and optionally installable as an OOB application. read more...

1 comment |category: |Views: 13

tags: another

Learning how to use Value Converters in Silverlight(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 3 days ago

Taking a look at how to use and harness the power of Value Converters. A Value Converter (IValueConverter) allows for you to perform custom logic during Bind time in XAML based applications. With a value converter you can implement pretty much any type of complex logic you want (bool to visibility, changing styles, etc) at runtime and have this logic extracted away in a stand alone class. read more...

add a comment |category: |Views: 1

tags: another

Getting Started w/ NuGet(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Learning how to use the NuGet Package Management System. We will start off by looking at how to install NuGet inside of Visual Studio. We will then learn how to use NuGet to install/uninstall packages. We will end the episode by looking at how to create our first NuGet Package. read more...

add a comment |category: |Views: 4

tags: another

Working with Advanced Aspects with Postsharp (dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Taking a look at how to use the AOP (Aspect Orientated Programming) framework Postsharp. In this episode we will focus on how to use the OnMethodBoundry, MethodInterceptions, LocationInterception and EventInterception Aspects. We will look at how each of these can be used and how they can be used in conjuction with each other to build a better application. read more...

add a comment |category: |Views: 10

tags: another

Getting Started with AOP using Postsharp(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Taking a look at how to implemented AOP (Aspect Orientated Programming) with PostSharp. We will be using the Postsharp library in this episode and we will take a look at how to create our first Aspect as well as how to use the metadata with the aspect to provide real business value in your application. read more...

1 comment |category: |Views: 27

tags: another

Learning how to use Behaviors in Silverlight(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 5 months, 13 days ago

Taking a look at how to use and harness the power of Behaviors. A Behavior in Silverlight is a way to extend an existing UI element in order to add additional state or actions to it. We can create these Behaviors and attach them to pretty much any UI element you could hope for. read more...

add a comment |category: |Views: 0

tags: another

Responsive Web Design - Stop and Think(www.codersbarn.com)

submitted by BognitBognit(2110) 5 months, 15 days ago

This article by Ethan Marcotte on Responsive Web Design has been widely touted as the designer's panacea for all things mobile. Other leading designers such as Jeffrey Zeldman and Andy Clarke have all jumped on the band wagon. Considering the amount of influence these guys have on young designers, it saddens me that leading designers, of all people, would sacrifice their art on the altar of a quick fix. read more...

add a comment |category: |Views: 3

tags: another

Share C# Anonymous Types across Functions and Scope(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 5 months, 15 days ago

So earlier today I was lamenting that an anonymous type can't be shared between functions with Wes Dyer, when he said "Well actually they can..." read more...

add a comment |category: |Views: 6

tags: another

Learning SQL Server - Efficient Query Writing Strategy - Gift Book(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 6 months, 8 days ago

Some people may push back on this next technique or misunderstand until getting to the very end. The goal is to have fewer errors as you write complex queries more quickly by making sure the easy stuff works first. read more...

2 comments |category: |Views: 63

tags: another

Find Nth Record Quickest Way in SQL Server(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 6 months, 16 days ago

A Very simple tutorial to find Nth Record. A Quick Tutorial. read more...

add a comment |category: |Views: 2

tags: another

WP7: Using Location Services (www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 6 months, 24 days ago

Taking a look at how to use the Location Services (GPS) built into the Windows Phone 7 platform. We will first take a look at how we can use the location servcies library on the phone to get the phones current GPS information. We will then take a look at how we can use that information in conjuction w/ the Bing Services to get the street address for the GPS coordinates read more...

add a comment |category: |Views: 7

tags: another

WCF: How to create Custom Message Interceptors(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 6 months, 24 days ago

Taking a look at how to extend WCF to create custom Message Interceptors We will first take a look at how we can create our custom interceptors and hook them into the WCF pipeline. We will then take a look at how we can intercept both inbound and outbound messages to allow us to perform some sort of actions agains the messages. read more...

add a comment |category: |Views: 11

tags: another

MVVM - How to create a ViewModelLocater(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 6 months, 24 days ago

Taking a look at how we can create a simple ViewModelLocator to inject our ViewModel into our DataContext at runtime via conventions. The ViewModelLocator Pattern will allow you to create a very flexable application because it will decouple your Views from your ViewModel. The approach in this episode will take a convention based approach to determine which ViewModel should go with a given View. read more...

add a comment |category: |Views: 4

tags: another

WP7 - Learning how to use Live Tiles(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 6 months, 24 days ago

Taking a look at how we can use Live Tiles in WP7 (Mango). WP7 Mango has introduced not only the ability to create Application Tiles via code but they have also added the ability to create Secondary Tiles, tiles which can deep link into your application. These Secondary tiles can also be created, updated and deleted in code and can provide a very powerful feature for your application. read more...

add a comment |category: |Views: 37

tags: another