var fDesc=new Array(); fDesc[0] = "The IBM® Database Add-Ins for Visual Studio are a collection of features that integrate seamlessly into your Visual Studio development environment so that you can work with IBM data servers and develop IBM database procedures, functions, and objects. With these add-ins, you can:

- Open various IBM database development and administration tools
-Create and manage IBM database projects in the Solution Explorer
- Access and manage IBM data connections in the Server Explorer
- Create and modify IBM database scripts, including scripts to create procedures, functions, tables, views, indexes, and triggers
- Create Windows or ASP.NET Web applications"; 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 = ''; } }