1
5 Main Reasons Why Starcraft: Broodwar is a better strategy game than Age of Empires 2: The Counquerors

Age of Empires 2 vs Starcraft

It has been a while since we discussed which game is better in eksisozluk (a turkish dictionary site) which one of these games is the best...

2
3
0

How to Add Web Reference to a Console Application

It has been a long time since I have written in my blog because of my workload. Yesterday I have seen that you cannot directly right click and add web reference to a console application. Instead, you have to click “Add Service Reference”, click “Advanced”, click “Add Web Reference” button at the bottom and then [...]

0

How to Bind Data and Load Comboboxes / Dropdownlists in Microsoft CRM using Javascript and AJAX

Let’s say you have two tables that include towns and cities and you also have two fields in an entity that you have to keep the town and city of customer address. All you want to do is to load towns that are valid for the selected city only.
Below you will find how to do [...]

0

How to extract sound out of SWF or FLA files

You liked the sound in flash but you cannot find it in MP3 or WAV formats ?
If you have a SWF Decompiler (like SoThink SWF Decompiler), a Flash editor(like Adobe Flash) and a Proper Converter(like Total Video Converter) you can easily extract the sound file out of the fla or swf files.
So, let’s go step by step.
1- If [...]

1

Solution of audio and display driver problem in Windows 7 RC

I have installed Windows 7 yesterday to my old desktop which has 1,5 GB of RAM, an Intel Mainboard, an ATI Radeon 9200  and an onboard sound card. After the installation system seemed to be running nearly as smooth as Windows XP or at least better than my brother’s new laptop with Vista.
I had two [...]

0

5 Main Reasons Why Starcraft: Broodwar is a better strategy game than Age of Empires 2: The Counquerors

Starcraft: Broodwar vs Age of Empires 2: The ConquerorsIt has been a while since we discussed which game is better in eksisozluk (a turkish dictionary site) which one of these games is the best strategy game under the topic of Age of Empires 2: The Conquerors.

0

How to set Null value for datetime in Visual Basic .NET

You can set NULL values for datetime values in your update parameters by using DBNull.value.
SqlPar(0) = New SqlClient.SqlParameter(“@CreatedOn”, DBNull.Value)
You can not use vbnull for null values. It sets the date to the lowest available value which varies (2.1.1900 for me).

0

AdventureWorks and sample databases for Microsoft SQL Server 2008, 2005

You can download sample databases for Microsof SQL Server 2008 or Microsoft SQL Server 2005 from CodePlex.

0

Microsoft announces Project Natal for XBox 360

Yesterday, we heard some exciting news from the Electronic Entertainment Expo 2009.
Microsoft has announced that they are developing a new system for Xbox 360 that you actually will use your body instead of controller. The system is called Project Natal and it is said that it is already ready to use. Also it is said that we [...]

1

How to refresh parent page (window.opener) without using Javascript opener.reload() function

In one of my previous articles here, I have written about closing windows without the yes/no prompt.
Well, in this article I am going to write about refreshing the parent window’s (referred as opener in javascript DOM) without opener.location.reload() function.
This will be especially useful when you click a server side button to open our current window. Because whenever [...]

0

How to add ID dynamically to an SQL Query

You have to use the “ROW_NUMBER() OVER” command to give ids to the records you have in your query.
A full command including “ROW_NUMBER OVER” is as the following:
 SELECT ROW_NUMBER() OVER (ORDER BY Column1 ASC) AS RowNo,
Column1, Column2, Column3, Column4 FROM Table1
RowNo will be your ID here from 1 to the number of records. The [...]