" If we accept sunshine and warmth, Then we must also accept the thunder and lightning."--- Author Unknown
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
I am just putting some of my regular expressions here so that I can view it later. So no one should care about this post at all! :) In Visual Studio I needed to find every single line comment which also included the word IsNew in it. ^\s*//.*IsNew.*$ This will match from the...
[More]
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
"WANT leads to CHOICE, which leads to COMMITMENT.SHOULD leads to DECISION, which leads to SACRIFICE."
Be the first to rate this post
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5
When you want to debug a windows service using the Visual Studio IDE you can either attach to the process which isn't fun after 5 minutes or you can do the following. Create a Visual Studio Solution Let's start by creating a new Visual Studio Solution named "EmailProcessor Solution"....
[More]
Currently rated 4.0 by 2 people
- Currently 4/5 Stars.
- 1
- 2
- 3
- 4
- 5
Have you ever has to remote into a machine or server only to get an error of "The terminal serve has exceeded the maximum number of allowed connections." (shown below) This limitation set by Windows, but can be easily overridden by using the command prompt. Go to Start >...
[More]
Currently rated 5.0 by 1 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5
In my prevous entry I demonstrated configuring SharePoint's flyout menus. Everything I wrote was the "best case" scenario". The focus of this entry is to address those things that will cause fly-out menus to appear to not work. At one of my client, they had alre...
[More]
Currently rated 4.0 by 2 people
- Currently 4/5 Stars.
- 1
- 2
- 3
- 4
- 5
With a number of clients, I have been provided a sample format for a transactions along with instructions to develop a process to load it into a database as quickly and painlessly as possible. This usually comes with the requirements that the XML data file can have any number of records from 1...
[More]
Currently rated 5.0 by 1 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5
I was adding a secondary web front-end to their already existing Production MOSS 2007 Farm for one of my clients. The MOSS 2007 RTM software was installed using the "Complete" option ("Web Front-end" only option was tried as well with the same results) on a newly created se...
[More]
Currently rated 4.0 by 2 people
- Currently 4/5 Stars.
- 1
- 2
- 3
- 4
- 5
Here is a Generic Singleton factory. Enjoy!// this is the class for which I want to maintain a single instancepublic class MyClass{ private MyClass() { // private constructor ensures that callers cannot instantiate an object using new() }}// Singleton factory implementationpub...
[More]
Currently rated 5.0 by 1 people
- Currently 5/5 Stars.
- 1
- 2
- 3
- 4
- 5
This is a simple way of escaping special characters inside of strings that you might want to insert into XML. I have used other techniques which require more coding so keep this handy! You will use the following method: SecurityElement.Escape(string text). see MSDN documentation
Currently rated 4.0 by 2 people
- Currently 4/5 Stars.
- 1
- 2
- 3
- 4
- 5