var fDesc=new Array(); fDesc[0] = "The best way to make documentation available with your Microsoft® Access® application is by adding a help file. By pressing F1 or the Help button the user immediately gets the info he is looking for.
The Help Generator for Microsoft Access greatly simplifies making help files and user documentation. No special help authoring expertise is needed to create help file. The Help Generator not only lets you make the online Help, but also user and technical documentation in Microsoft® Word.
Microsoft Access applications generally consist of many forms and reports. The Help Generator scans the application and creates all needed files with content. Screenshots are made and text is picked up from Access Object descriptions."; 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 = ''; } }