var fDesc=new Array();
fDesc[0] = "Class Builder Wizard is a Microsoft Visual Studio wizard that generates data object classes and a full data layer implementation for database objects (MS SQL Server and others). It can also be used to quickly create custom classes (not necessarily based on a database object) by defining the structure of the class "manually."
A full plug-in interface has been implemented to support data sources beyond the default (MS SQL) and allow for third-party data sources.
This code generator can create code in C# and VB.Net. The generated objects are serializable and are easily bound to Windows and ASP.Net form controls, or utilized in web services.
This project was created to speed-up my personal development process by automating several tasks that I found repetitive between projects. My hope is that by releasing it here, others will find it useful as well.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}