var fDesc=new Array();
fDesc[0] = "Softgroup .Net Combos Controls include several advanced controls with wich you can enhance the user interface of your applications:
- ComboColors
- EditColor
- ComboDrives
- ComboFonts
- EditFonts
- ComboImages
- ComboPrinters
- ComboList
FocusStyle property to enable alphablend effetcs style of focus and item selection .Customizable BackColor, ForeColor and Font .FlatStyle property (Flat, Popup, Standard and System) .Automatic Tooltip of selected item .Auto adjust of combo dropped down window width to display full items text";
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 = '';
}
}