var fDesc=new Array(); fDesc[0] = "IDE plugin to monitor clipboard, track clipboard history and to save & load code snippets for giving presentations with Delphi.

If you have ever given a presentation with Delphi, this IDE plugin will help you organizing the code snippets you want to use during the presentation! The code snippets are nicely organised and always easily accessible right from the IDE itself.

If you have ever been frustrated that something you cut to the clipboard was lost due to a newer clipboard action, the clipboard monitor keeps a history of your clipboard and make it easy to recall clipboard content at any time."; 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 = ''; } }