var fDesc=new Array(); fDesc[0] = "RJ HexEdit is a text and binary editor. It will let you edit (or view) any existing file, or let you create a new one. You can copy text strings into another program. For instance text into a C++ compiler as a string. Several other formats are also available like Rich Text Format (Word and most other word processors support this).
You can also copy any binaries as a raw array or as formatted text into for instance a word processor and can insert (Append) a hole file into the document.

You can print any part of the file you want. If you want to print certain pages the editor helps you get the right page to print. Or you can select the text or binaries you'd like to print. Before you print you can view the document in the Print Preview."; 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 = ''; } }