var fDesc=new Array(); fDesc[0] = "Introduction to Visual Basic is Complete Lesson Package, which contains Article, Project code files and Video. It is beginner’s guide and designed for people with little or no prior knowledge of computer languages, who want to learn to program by using the Visual Basic language and who has some previous programming experience, maybe in another language or from a few years ago.
In the first part – Article you can read about what is programming, then you’ll walked through the lessons with step by step instructions - how to create your first program, using methods and variables, controlling program flow, creating your own classes, i.e. essential programming techniques.
The second part – Project code files contains different samples and forms, such as My first application, application designer, resources designer, settings designer and so on.
The third part – Video is the object-lesson, you can see everything you read in the Article.
So it’s a good set of learning information to gain necessary knowledge and start 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 = ''; } }