Community Page
- www.leghumped.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- hold down f2 on system boot. go into bios and go to the display category. hit enter. There are 2 options for the brightness maximum settings. For A/C power and for battery power. adjust it there.
- I just wanted to let you know that I found this hilarious. And shared it with many friends. Wewt, your goatse reaction has spanned the length of my buddy list :D
- You should use the StringBuilder in your implode method.
- wow, you saved my time to fix this issue. I got the similar problem. now fixed thanks to you. thanks man. Cheers!
- super!!!! Really help a lot!!!
LegHumped
Coding, snippets, tutorials and procrastinations
Ever needed to retrieve the shell icon for a particular file type in C#? This class will retrieve the Icon associated with a file from just the extension.
using System;
using System.Runtime.InteropServices;
using System.Drawing;
namespace Lime49.Util ... Continue reading »
using System;
using System.Runtime.InteropServices;
using System.Drawing;
namespace Lime49.Util ... Continue reading »
10 months ago
From MSDN on SHGetFileInfo:
Remarks
If SHGetFileInfo returns an icon handle in the hIcon member of the SHFILEINFO structure pointed to by psfi, you are responsible for freeing it with DestroyIcon when you no longer need it.
10 months ago