As a computer software programmer, one must have learned and use these two words “Hello World”. It is unsaid theory to write a hello world program to start learning a…
Category: Code Snippets
LightBox Vs VideoBox Vs Custom Code
Recently I was given a task to make LightBox and VideoBox work on same page, where we have Images and Video to show. However, Videobox is inspired by Lightbox as per developer,…
Creating SQL Table from another table
Often we need to take quick backup of database with data before we can make changes in table. for this I create the image of table within same database, as…
Setting/Resetting Auto increment value in MSSQL 2005
Once you create a table and what to reset autoincrement value of a table to your desire number, you need to set some system table values, which are not available…
Calculating distance
With increasing use of Map service such as google, yahoo and MSN one often need to calculate distance between two location. This can be done many ways I suppose. However,…
How to remove all child movieClip through AS 2.0 Code
To remove all child from a given movie clip simple loop through its all object and remove the type of object you want. Following code does the same for related_mc.sp_related…
Printing Text Document in .NET 2.0
Some time reporting tools are too heavy to use with a small application. Something similar happens with me, I need to print a Single page text information for this I…