Category Windows

compare two files freeware

Howto: Compare two files using freeware or open source Diffmerge is my favorite program (open source at least) that I use to compare files. From their website: DiffMerge is an application to visually compare and merge files for Windows, Mac…

clear flash cache

How to clear your flash cache To clear specific sites: When you click on the link, you are taken to the adobe site. On the right hand side of the frame, there is a box that will display a…

Send Email c#

Here’s how to send some email in c# using System.Net.Mail; using System.Net.Mime; using System.Net; ///place in a sub-routine or button try { MailMessage mail = new MailMessage(); SmtpClient client = new SmtpClient(“smtp.example.com”); MailMessage message = new MailMessage(“[email protected]”, “[email protected]”); // ,…

Howto: Resize Virtual PC 2007 Virtual Machine

This is a two step process: 1. Use VHDResizer to resize the partition, download here 2. Use gparted to expand the partition, download here Details on VHDResizer (from ) VhdExpand is now VhdResize. VhdResize will resize Microsoft’s VHD files and will also…