Thursday, March 13, 2008

Quotes

"Every woman is a gift when she becomes a daughter, Every woman is beautiful when she becomes a lover, Every woman is special when she becomes a wife,Every woman is like god when she becomes a Mother" - Vivekthangaswamy

Wednesday, January 23, 2008

MPEG optimizer is disabled in Ulead VideoStudio 11

I am unable to enable MPEG optimizer when I select the option of Create Video file option.

I find MPEG optimizer is disabled I use video studio editor.

Can anyone post reply for this problem. I'm using the full version.

Tuesday, May 30, 2006

ConfigurationSettings.AppSettings["SQLConnString"]; -- Become Obsolete in .NET 2.0

Recently when I tried to create a data access component for my web application in .NET 2.0 I found that ConfigurationSettings class as become obsolete. In .Net 2.0 ConfigurationManager class that replaces ConfigurationSettings. “System.Configuration.ConfigurationSettings.AppSettings["SQLConnString"]; this method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings" The System.Configuration.ConfigurationSettings.AppSettings["SQLConnString"]; Will give your warning that this “this method was obsolete”. What to do in order to use ConfigurationManager class? System.Configuration.dll - ensure you add a reference to this assembly. In .NET 2.0 all configuration functionality is in this separate assembly now.