CSV Parser
For some of my work, I work on data importers and other different tasks which require dealing with CSV and tab delimited…
For some of my work, I work on data importers and other different tasks which require dealing with CSV and tab delimited…
Elminating the unused variable warning for a declaration in the catch block is very easy because you don’t need to assign to…
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.…
Occasionally, as a software developer you want to restrict a user to only allow them to run one instance of an application…
I’m not sure how many times I have been someone ask for help on the MSDN forums, email me, or come over…
It’s no secret that I have been contact almost daily by Technical Recruiters , often the job advertisements that the technical recruiters…
The easiest method of checking whether Skype is installed is actually to check for a Registry Key. We, of course, can’t check…
Sometimes, when I have applied for full time employment in the past I have seen job ads or received responses from companies…
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.
How to stop a form from closing in the .NET Framework