var fDesc=new Array(); fDesc[0] = "This video shows how to use the Status Strip control which is an elegant way for you to provide application progress or status information back to your users.
Here, you’ll find a list of links that we’ve put together so you can easily get to up-to-date training material that will get you started learning how to program.
Microsoft puts the fun back into computer programming. With a friendly development environment that is very easy to master, a curriculum that you can use to learn with separate lessons, and lots of sample code, eases students of all ages into the world of programming."; 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 = ''; } }