January 2011
17 posts
1 tag
When it comes to Jailbreaking, it doesn't get any... →
1 tag
1 tag
The difference between static and non static...
Asking anyone to explain the difference between static and non static methods always results in long winded answers. I came across this answer in a forum posting on daniweb.com.
Static methods are used when you will need to access a method from many different classes or forms, you wouldn’t want to create an object every time you needed that method. and you certainly wouldn’t want to...
1 tag
Ajax.Net CascadingDropDown Control Extender Demo
It took me quite a bit of messing around to get these cascading dropdown controls to work properly in Visual Web Developer 2010 in a flexible way.
Basically what I have created here is an out of the box website that will demo them for you giving you full flexibility to modify them. (I have commented the code a lot to help you out as much as possible.)
I have also created a work around for the...
1 tag
1 tag
Common fonts to all versions of Windows & Mac... →
Just found this link, very handy list indeed.
2 tags
Microsoft SQL Database File Size Reduction
If you are having problems with your server running out of hdd space and can’t figure out why, chances are your databases are causing the problem.
Don’t jump in and start deleting files there is an easy solution!
When logged into your Server Management Studio right click on any database name.
Select properties, options and set the recovery model to simple then click ok. Now right...
1 tag
1 tag
Windows Easy Transfer Tip
Folks, when using Windows Easy Transfer make sure you don’t transfer the file to the hard drive that you intend on placing your backup data onto.
In other words, if you backed up your data onto an external hard drive leave it there while you extract the data back.
2 tags
Microsoft Security Essentials
No more AVG for me or NOD32 security center. I came across Microsoft’s own virus, malware and spyware protection that they supply for free!
http://www.microsoft.com/security_essentials/
Just installed it and from the looks of things it looks like the real deal.
My software never has bugs. It just develops random features.
– http://twitter.com/codinghorror/status/24707942691377152
1 tag
There will always be those who are more talented than you. Learn to live with...
– http://twitter.com/weightshift/status/4324702536
2 tags
Visual Studio 2010 Wallpapers! →
1 tag
Windows Easy Transfer
I’m upgrading my pc in work from XP Pro to Win7 Ultimate. The whole thing to do though is a bit of a nightmare with data.
There is no Win7 upgrade so you have to back up all your data, fun times. =(
However there is a tool Microsoft offer called Windows Easy Transfer that backs all your data up for you, profile stuff and all.
All you gotta do then is re-install your applications...
2 tags
ASP.NET App_Code folder
The App_Code folder in a website project in Visual Web Develop is something I didn’t quite fully understand till recently.
You can drop into that folder any sort of CSharp (.cs) file you please and provided you include “using System.Web.UI.WebControls;” you can directly interact with any .aspx page on the website and it’s web control elements.
Just instantiate the class...
2 tags
ASP.NET value to decimal place
The most simplest of problems came up this morning. How do you round off a value to a certain decimal place?
Such a n00b thing not to know off the top of my head. So here it is for those of you who like myself don’t always remember how to do this.
float i = 0.94963; i.ToString("F1");
F1 is for one decimal place (0.9), F2 is for two (0.94)… Ya you get the idea. ;)