Thursday, October 29, 2009

MSG01177 Winja Developer

The Invalid setting in Object "name", handling error 101.

This error will occur when you create a OIS object with the unknown script name of the project. Aactually the name you provided for script doesn't exist in the project. Simply enter the correct script name and save, after you run the solution it will work.
Cheers!

Thursday, October 15, 2009

Cannot load BUILD template : MSG01500

When you face this problem while buildin panels or other stuff in LegaSuite GUI or Winja developer. You project must be missing the reference path for the templates folder.

The template file normally placed in the app named folders. Hope this helps the LegaSuite GUI and WinJa beginners.
Happy coding.

Friday, July 04, 2008

OpenSource MP3 Player?

Is there is any Open Source MP3 Player Equivalent to Music Match 10 Jukebox?

Why Yahoo irritates and frustrates all Music match users and lovers in this world?

If Yahoo is not going to support Music match anymore, then why not make it as a Open Source from here after?

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.