Archive | May, 2006

Unattended installation of Visual Studio 2005 Team Explorer

    If you have a team working on a dotnet project having members more then 5, installation of Visual Studio 2005 Team Explorer would be a time consuming process. So you’ve probably gonna love following trick With the help of following comman-line parameter, you may create an ini file that shows how to install Team [...]

Read more

CodePlex – Another Open Source project portal from Microsoft

Microsoft has been started beta version of CodePlex, another open source project portal  after gotdotnet; but that one supported with aspx and team foundation server.     Here is the discription of site with their own word : “CodePlex is an online software development environment for open and shared source developers to create, host and manage [...]

Read more

How to Pause Visual Studio Splash Screen

Here is a simple yet usefull swith for visual studio to test your VSPackage’s splash screen support: /splash    With that switch, Visual studio simply displays a dialog saying “click OK to continue” which pauses VSFollowing commandline can be used to pause vs for exprimental enviroment: devenv /rootsuffix Exp /splash

Read more

How to Restrict Internet Explorer Control Panel Settings

On your start menu click on run and type Regedit on run dialog, this will open registery editor. Then browse to HKEY_CURRENT_USER \ Software \ Policies \ Microsoft \ Internet Explorer \ Control Panel (If path doesn’t exist, you may create it yourself). Within that key you may enable any restriction you want, all you [...]

Read more

Readonly variables in Php

  One of the coolest thing in php5 stuff is overloading. You can control access to your variable via __call, __get and __set methods. You may also make your variables readonly to other classes as shown below : class SomeClass { /***********************************************************************************/ /* -=Data Members=- */ /***********************************************************************************/ private $variables = array(); private $readOnlyVariables = array(); [...]

Read more