Though I have posted in my old blog, but just to keep track of this..
 http://www.aspfree.com/c/a/VB.NET/Executing-LongRunning-Tasks-with-the-Progress-Bar-in-ASPNET/
This article suggest a method on how to show progress bar in your web application.
Posted on August 23rd, 2007 by Sumit Gupta
Filed under: .NET, ASP.NET, C#.NET, Links, VB.NET/VB | No Comments »
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 name movie clip:
for (obj in related_mc.sp_related){
// root.mc1[obj] instanceof MovieClip same as typeof(_root.mc1[obj])==”movieclip”
    if (typeof(related_mc.sp_related[obj])==”movieclip”){
     related_mc.sp_related[obj].removeMovieClip();
    }
}
this loop through all child of related_mc.sp_related and remove the instance if its [...]
Posted on August 22nd, 2007 by Sumit Gupta
Filed under: Code Snippets, Flash | No Comments »
I found this while searching code for my flash project…
http://www.scribd.com
This site helps sharing of document. It has some great resources available for everyone. So upload your document,books and tutorial for others to read them .
Posted on August 18th, 2007 by Sumit Gupta
Filed under: Links | 1 Comment »
Yet again I have been given job to create a Flash component that will be displayed on homepage of site, and it has to list all content of site. For this I ask for a XML backend that provide the data to Flash. Since we have lot of data I opt to use XPath API [...]
Posted on August 18th, 2007 by Sumit Gupta
Filed under: Flash, Programming | No Comments »
Well the easiest post to read
Just enable it in all PHP.ini and PHPx.ini you find it Xampp installation …
Read original post at http://www.menyhart.net/blog/developer-stuff/enabling-curl-on-xampp/
–Â Sumit Gupta
Posted on August 9th, 2007 by Sumit Gupta
Filed under: Links, PHP, Programming, Server Configuration | No Comments »