Nice new tool from, yes this time Microsoft itselft apart from the debugbar that is also very good.
The Microsoft Internet Explorer Developer Toolbar provides a variety of tools for quickly creating, understanding, and troubleshooting Web pages.
IE Developer Bar
Great help to UI developers.
Wednesday, 19 March 2008
Automatic Property in .Net 3.0
Class Sample
{
Private int m_UserId;
Public int UserId
{
get{ return m_UserId; }
set{ m_UserId = value; }
}
}
Now the new .Net 3.0 approach is
Class Sample
{
Public int UserId
{
get;
set;
}
}
Saves few lines of regular code and you can change the scope of get or set to make the property read only etc.
Default values for reference types are going to be null and value types to be according to the normal behaviour of .Net.
{
Private int m_UserId;
Public int UserId
{
get{ return m_UserId; }
set{ m_UserId = value; }
}
}
Now the new .Net 3.0 approach is
Class Sample
{
Public int UserId
{
get;
set;
}
}
Saves few lines of regular code and you can change the scope of get or set to make the property read only etc.
Default values for reference types are going to be null and value types to be according to the normal behaviour of .Net.
Tuesday, 18 March 2008
Converting string into GUID in C#
Some thing as easy as this may make you blink for a while on a busy day.
string strGuid;
strGuid = "your existing guid in string format";
Guid guid = new Guid(strGuid);
string strGuid;
strGuid = "your existing guid in string format";
Guid guid = new Guid(strGuid);
Friday, 14 March 2008
doPDF - Free PDF creator - very easy to use.
http://www.dopdf.com
doPDF6.0 installs itself as a virtual PDF printer driver so after a successful installation will appear in your Printers and Faxes list.
To convert to PDF, you just have to print the document to the doPDF free pdf converter. Open a document (with Microsoft Word, WordPad, NotePad or any other software), choose Print and select doPDF.
It will ask you where to save the PDF file and when finished, the PDF file will be automatically opened in your default PDF viewer.
Great Stuff !!
Thursday, 6 March 2008
Great new way to read msdn
MSDN reader, a nice new tool to get rss synch'ed and easy way to scroll thru pages.
http://code.msdn.microsoft.com/msdnreader
http://code.msdn.microsoft.com/msdnreader
Virtual PC on web: New world of webtops - your pc on net
Few WebTop links. Amazing new flash based web sites.
http://demo.eyeos.org
http://g.ho.st/main.jsp
http://www.jooce.com
http://desktoptwo.com
http://demo.eyeos.org
http://g.ho.st/main.jsp
http://www.jooce.com
http://desktoptwo.com
Subscribe to:
Posts (Atom)