Moses Yap
:-) A happy IT Guy

Configuring Subsonic SubCommander

February 24, 2009 08:03 by moses.yap
 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: .NET | Tools
Actions: E-mail | Permalink | Comments (1) | Comment RSSRSS comment feed

Getting Resharper 4.1 to work nice with CodeRush and Refactor Pro 3

January 31, 2009 15:43 by moses.yap
  Some people like Resharper, some like CodeRush + RefactorPro… me, I like them both and would rather have them both working the same time.  In fact, that is what I have right now and I’ve had both running nice in both Visual Studio 2008 and 2005.  I haven’t had any problem with it, ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Visual Studio | Tools
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Getting CorelDraw and PhotoPaint X4 to work on Vista x64

January 31, 2009 15:15 by moses.yap
  I had this problem where after installing CorelDraw Suite X4, CorelDraw and PhotoPaint just do not want to run.  Executing the applications gave an "This application has stopped working" error message.  It could be incompatibility with the x64 OS or maybe because I have S... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Others
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

SQL Server 2008: Saving Changes is not permitted… Prevent saving changes that require the table to be re-created.

January 30, 2009 11:49 by moses.yap
    This message comes out when trying to change the table structure and the table contains data.  In SQL Server 2005, the modifications will go through without getting this error. To allow the table to be modified, go to Tools –> Options –> Designers –> Table and Databas... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: SQL Server
Actions: E-mail | Permalink | Comments (1) | Comment RSSRSS comment feed

Getting Intellisense for web.config/app.config in Visual Studio 2008 (Spring.NET as example)

August 7, 2008 09:09 by moses.yap
This is based on extending Visual Studio 2008’s intellisense system through XML Schemas.  The step by step guide below is specific for Spring.NET but it should also work for other packages as long as a valid XML Schema exist. For Spring.NET: 1.  Open your Visual Studio 2008 project and o... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Visual Studio
Actions: E-mail | Permalink | Comments (1) | Comment RSSRSS comment feed

C#: My first foray into Dependency Injection using Spring.NET

August 1, 2008 09:47 by moses.yap
For quite a few months now, I have been hearing a lot about loose coupled components using Dependency Injection patterns.  There are a few frameworks that keeps popping up, including the Unity Framework which is part of Enterprise Library 4.0, String.NET which has been around for a while and is... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: .NET | C# | Patterns
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

C#: Randomize Sorting the Items inside a Collection

July 30, 2008 05:18 by moses.yap
Recently, I have been doing some simple games for my web site at ChristianPipes.com and one of the games is a multiple choice type game where choices for a particular question has to come out in random placement.  So, if the same question comes out, the choices would not be sorted the same on t... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: .NET | C#
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

C#: Getting a Random Record from a Table inside the SQL Server Database

July 30, 2008 03:56 by moses.yap
I wanted to get a random record from a particular table on the SQL Server database.  For my case, I had a table containing quotes, and I wanted to randomly pick on to show on one corner of my web site.  I am also using LINQ to SQL for this web site, so the solution here will be using LINQ,... [More]

Currently rated 5.0 by 2 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: .NET | C# | SQL Server | Lamda
Actions: E-mail | Permalink | Comments (1) | Comment RSSRSS comment feed

Getting SQL Server Management Studio (2008) Object Explorer to list out databases for servers where you don’t have permissions for all databases

July 29, 2008 11:57 by moses.yap
Recently I installed SQL Server 2008 RC0 but was having some difficulty with the SQL Server Management Studio (SSMS) on a server where my login do not have access to all the databases.  This is specially troublesome as I needed to work on some websites at Brinskster which is a shared hostin... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Windows | SQL Server
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

.NET: Creating your own Custom Configuration Section

July 28, 2008 09:39 by moses.yap
Sometimes its pretty useful to create your own configuration section on the web.config or app.config file.  It makes much cleaner than using the key/value pair on the appSettigns, and you get a strongly typed object with validations for the values. To create our own configuration section, we n... [More]

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: .NET | C#
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed