Adobe Flash CS5.5 and AS3 – Click event from frame 1 that calls frame 2 causes click event in frame 2 to fire also

If you compile your game with Flash Player 9 (Publish Settings), this is not an issue. When the Flash Player is set to 10 and above is when propagation occurs.

To prevent this from happening, add the following code…

event.stopPropagation();

Microsoft Outlook – How to unblock a file extension that Microsoft Outlook (Office 2007) won’t allow to be read or sent

You can define what outlook blocks or does not block by using this registry key

[HKEY_CURRENT_USERSoftwareMicrosoftOffice12.0OutlookSecurity]

“Level1Remove”=”.mdb;.zip;.exe;.url;.reg;.app”

Add to “Level1Remove” all extensions you do not want Outlook to block.

See the following article for more detail.

http://support.microsoft.com/kb/829982

SQL Server – How to inner join a table to receive just one row of that table where a field is MAX. For example, has the greatest date.

This SQL statement will produce one row for each record found on the account_table for a given account number

We want also want to join the name and address table to the row. We only want one row from the …

SQL Server Reporting Services (SSRS) – Multiple IIf statements in an expression behind a textbox

Instead of using a code behind for simple decisions, you can use unlimited multiple IIf statements in an expression behind a textbox.

For example, let’s say you have a parameter called HoldType that can have 3 different values, (1, 2, …