Skip to content

Category: C#.NET

.NET Framework

CSV Parser

For some of my work, I work on data importers and other different tasks which require dealing with CSV and tab delimited…

June 16, 2011
.NET Framework

Stopping a System.Threading.Timer

Stopping a System.Threading.Timer isn’t very well covered in the MSDN documentation. We need to use the Change Method which accepts two integers.…

May 3, 2011
C#.NET

Windows Service – Marked For Deletion

Windows Services,especially managed .NET ones , can be extremely difficult to deploy if not done correct initially. Errors, of course, can also…

April 19, 2011
.NET Framework

How to Minimize Application to Tray

I’m not sure how many times I have been someone ask for help on the MSDN forums, email me, or come over…

March 18, 2011
C#.NET

Skype API Basics – Part 1

What is the Skype API? The Skype API is an easy way to create plugins that can dramatically change the way Skype…

June 3, 2010
.NET Framework

Determine if Skype is Installed

The easiest method of checking whether Skype is installed is actually to check for a Registry Key. We, of course, can’t check…

May 25, 2010
.NET Framework

Books I’ve Read

Sometimes, when I have applied for full time employment in the past I have seen job ads or received responses from companies…

September 8, 2009
.NET Framework

Sending Emails from C#.NET

Emails are incredibly easy to send from .NET especially your typical <a href="http://www.mail-list.com/list_owner/plain_text_email.html" target="_blank">plaintext</a> email. We will be making use of the <a href="http://msdn.microsoft.com/en-us/library/system.net.mail.aspx">System.Net.Mail namespace</a> along with an <a href="http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol">smtp server </a>you should already have setup or you could use a free one like Gmail.

August 5, 2009
C#.NET

Read a Whole Textfile Into a String

At work, I’ve been working on an auto html emailer.   I’ve been receiving files from our Latin American office that are completely…

July 30, 2009