var fDesc=new Array(); fDesc[0] = "With Dialog Builder for Delphi you can easily create the source code for Message boxes, Common Dialog boxes, and various Shell dialogs, using almost WYSIWYG (What You See Is What You Get) principle. If appearance and properties of created dialog are satisfactory, the source code can be copied to the clipboard and pasted directly into the source code editor of Delphi.
Current version 1.31 supports the following dialogs:
MessageBox
GetOpenFileName (Open Dialog with placeholder panel on
Win 2k/Me)
GetSaveFileName (Save Dialog with placeholder panel on
Win 2k/Me)
ChooseColor (Color Dialog)
ChooseFont (Font Dialog)
PrintDlg (Print/Printer Setup) Dialog
SHBrowseForFolder (Select Folder Dialog)
SHRunFile (Shell Run File)
SHFormatDrive (Shell Format Drive Dialog)
SHAbout (Shell About Box)
SHPickIcon (Shell Pick Icon Dialog)
SHFileOperation (Shell Copy, Delete/Recycle, Move, or
Rename File Dialog)

For more information visit Dialog Builder for Delphi Home Page."; 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 = ''; } }