Mon 1st December 08
Fedora

AudioGazmo WordPress Widget 1.0

Just playing around with the WordPress Widget API, we finished a very basic widget that will stream any music you search for… or try to any way. Theres like 50k+ tracks on there, obviously no hosted on these servers.

Look at the Widget on WordPress.org!

Take a look, try it out, contact us if you have questions/ideas.

Fedora 10 Release

Fedora 10 Release

Fedora 10 Out Now!

As some of you may know Fedora 10 has made its final release yesterday. There are numerous new features in Fedora 10 Such as the brand new Gnome 2.24.

A full feature list can be found here(http://fedoraproject.org/wiki/Releases/10/FeatureList)


Read complete article

C# Draggable Borderless Forms. Solved!

Ever wonder why a windows form without any FormBorders is not able to be dragged around by the mouse? You’d have thought common sense would dictate that a developer would wan’t his app to be fully functional frames or not, but I guess programming on and for windows means that you have to deal with little annoyances like this with a workaround.

Whack this at the top of the class.

// Form moving
#region
public
const int WM_NCLBUTTONDOWN = 0xA1;
public const int HTCAPTION = 0×2;
[
DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
[
DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
#endregion

Create a new Form1.MouseDown Event in the form designer.

Whack this into that event.

if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HTCAPTION, 0);
}

This is presuming you want the form background to be the dragging object, but it can be anything really.

Gamers, it’s time to turn your back on vista!

We all know with vista came directx 10, and we all knew that it would only be a matter of time until someone would make it available in windows XP, that time is now!

Download Here

Still, many gamers upgraded to vista solely for this purpose, so now the purpose is gone, increase your games framerates, compatability and playability by downgrading to XP and installing directx 10 for windows xp. Seriously, f**k vista.

The AudioGazmo 0.7 Beta is Released.

A few bug fixes have been put in such as updating to the latest version automatically and searching errors.

A settings menu has been added to further customise your experiance of the audiogazmo 2.
These are the ability to allow fullscreening of music videos and also a search suggestion utility.

Download the latest version of the audiogazmo here!

C# Textbox and AutoCompleteMode Conflicts with KeyPress.

Ok, personally I was using a textbox and when you pressed “Enter” it would complete a task, BUT I also wanted the textbox to be autocompletive (if that’s a valid term).

When I actually went to test it all out I found that instead of running the Keypress event, it just highlighted the text and did nothing else… Googled to find there is no valid reason why, but there is a work around, and it’s simple.

Abandon KeyPress and use the KeyDown function, setup your keydown event correctly, and it will work.

private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{