Google and Yahoo Bowling

Google and Yahoo Bowlin...

This month i discovered a new interest, Search Engine Optimization. Few days ago the SEO world championship is started and i created a website for fun to see if i could have some results. It’s incredible but sometimes i reached very high positions in the contest leaderboard....
Play wav file in vb.Net

Play wav file in vb.Net...

Today i was working on a restaurant software, the customer asked me to play a sound alarm when a new order arrives because he can’t stay all the time looking at the software. I found it very easy, the .net framework is really rich of useful classes to use Here is the code...
Class Diagrams in Visual Studio.Net

Class Diagrams in Visua...

Today i gave a look at a new feature of Visual Studio.Net, the Class Diagrams. I found this new functionality really interesting for Object Oriented Programming. A lot of times i had to make really complex classes and when the project growed up it was an hard task to have clear in...
web.config appsetting section in asp.net 2.0

web.config appsetting s...

Storing configuration informations has never been so easy like in ASP.Net 2.0. You can store all your config parameters inside the appSettings section of the web.config file. Example (Into the web.config file) : As you can see, you can store every parameter you need for your website. <configuration/> ...
Thread synchronization in .Net

Thread synchronization ...

Multithreading is a great thing but you need to know that operations are not performed perfectly as you write them in your code. If you write a=a+1 you assume that the thread will execute it in just an operation but it’s not so. Multithreading happens at a very lower level (like...