var fDesc=new Array(); fDesc[0] = "Resource Editor for VS.NET is a Resource Editor integrated on VS.NET using VSIPExtras. As we all know, working with image resources in .NET is hard. When you have a .resx file in your project, you will find it difficult to update images, add new icons and so on, because the editor associated to .resx files is XML-based. So, for example, when you download a project from the Web and the project has a .resx file, you can't edit images easily."; 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 = ''; } }