-
English to Hindi Translation
Another great feature by Google … Type in English and get it in Hindi 🙂 http://www.google.com/transliterate/indic/ सà¥à¤®à¤¿à¤¤ गà¥à¤ªà¥à¤¤à¤¾ Its really cool man 🙂
-
Web Application Security Comparision: MS vs OSS
Just thinking on security concern my client always have with their web application. And they do tell me that they read open source software is better then Microsoft as they are free and less buggies as compare to microsoft. In this article I am going to put some important point that I tell them, don’t…
-
Web server Vs Streaming Server
This is best comparision and explaination for the term. Often people get confusion on WebServer and Streaming Server. Hope this article from microsoft help them http://www.microsoft.com/windows/windowsmedia/compare/webservvstreamserv.aspx a Must article for web developers, irrespective of their programming language.
-
Running ASP.NET securely
This blog article tells the story and how to secure the ASP.NET in shared hosting environment or for matter those want to restricted ASP.NET for some good reason http://blogs.msdn.com/jamesche/archive/2007/09/30/running-asp-net-in-a-shared-hosting-environment.aspx Hope it helps
-
Interesting Bug in Excel 2007
Surfing around internet found a interested bug listed here http://www.physorg.com/news110200561.html It says In a blog post, Microsoft employee David Gainer said that when computer users tried to get Excel 2007 to multiply some pairs of numbers and the result was 65,535, Excel would incorrectly display 100,000 as the answer. Gainer said Excel makes mistakes multiplying…
-
Creating Menu at runtime using Flash 8/ActionScript 2.0
You can create menu in your flash application using the following code, however, you need to note one thing that you need to import mx.controls.*; mx.data.binding.*; (if you need to create Menu using databinding) here is the code var mm:Menu = Menu.createMenu(Me); mm.addMenuItem({label:”All”}); if (aIndustry.length > 0 ) { aIndustry.sort(); for (var i=0;i if (aIndustry[i]…
-
Creating popup Window using Flash
Recently making a Flash in which I need a user input in a popup window to complete user action. For this I need to ask user some more value. Hence I use this code to show user another modal window. var nw = PopUpManager.createPopUp(_root,mx.containers.Window,true,{_width:150,_height:110,_x:((Stage.width-150)/2),_y:((Stage.height-125)/2)}); nw.title = “Choose Industry”; nw.createClassObject(mx.controls.ComboBox, “cb”, nw.getNextHighestDepth(), {_x:25, _y:40}); nw.cb.addItem(“All”); if…