Tag Archives: C# .NET

HaloHBF v0.1

I get so many hits to my site every day from people looking for it, so here it is. Download HaloHBF v0.1

HeliumDownloader v0.1 Alpha

Alpha… It probably should be pre-alpha. In fact, the only thing it’s got going for it is that it works. It’s a download manager, for downloading from free upload sites like megaupload, egoshare, and oxedion (the only 3 it currently supports). I will probably add support for a few more sites after I work more [...]

Free Image Slicer v1.0

It slices images into rows and columns. It also includes my ExListViewItem, which automatically allows drag and drop of file to a listbox, along with handling deleting files from the listbox and re-arranging the files. Download Free Image Slicer v1.0 Here Here is the Slice Image Method: public Image[] SliceImage(Image mainImage, int rows, int cols) [...]

Using the Krypton Toolkit with Visual C# 2005 Express Edition

The Krypton Toolkit makes just about any form look nicer, and it’s free, so it is a great addition to a program. Installing the Krypton Toolkit is probably very easy if you use the full version of Visual Studio, but with a few steps it can work seamlessly on the Express Edition too. 1. Download [...]

TZipFront v1.0

Simple frontend to TorrentZip. TZipFront includes a copy of TorrentZip embedded in the exe file, so no need to download extra files. Usage: 1. Drag and drop zip files onto the white box in the program. 2. Press Go! 3. Press the Delete logs button to delete all the .log files. Download TZipFront v1.0

GOTDActivator v1.0.1

A bug fix, a feature, and a name change. Usage: 1. Run Activator.exe 2. Start either Activate.exe or Setup.exe, depending on which one is used by the particular release. 3. Continue installation steps as usual. ——————————————————————— Version History: 2007-05-23 – v1.0.1 BUG: Correctly flushes dns when started/stopped FEATURE: Allows comments (#) and blank lines in [...]

Activator v1.0 for GOTD

http://www.giveawayoftheday.com/ is a site that provides a different commercial software application for free everyday. The company also runs http://game.giveawayoftheday.com/, which offers a free commercial game everyday. The problem provided by these sites is that the installer is wrapped inside a program which activates itself online. That is, if you save the file you download legitimately [...]

Code Snippets

C# Code Snippets. I am releasing them into the Public Domain, so go nuts with em // Same functionality as the JavaScript command public static string escape(string unEsc) { string rez = ""; for (int i = 0; i < unEsc.Length; i++) { if (Char.IsLetterOrDigit(unEsc[i])) rez += unEsc[i]; else rez += "%" + ((int)unEsc[i]).ToString("x2"); } [...]

XfireLibSharp

I am currently working on a C# library for the Xfire protocol. Thus far I have login down, which is a start, but still a lot of work ahead. Just wanted to let everyone know I’m still coding in my spare time (not much of it though). If anyone plans to use this library if/when [...]

AnimeChecker v0.1

Ah my first programming release on the new blog… Well here is a little (40kb) program I’ve been using for a few months now. It will search through a directory, list all the video files, and then search each filename for a CRC. The default file extensions it looks for are mkv, avi, and ogm, [...]