Ah ok,

this morning i started to code 'PostPrep.kix'

Taking advantage of kixforms and the RichtTextBox [Big Grin]

Problem by now (after 10 minutes of coding) is the following :

code:
function btnOpen_Click()
dim $FileName
$FileName = $frm.FileOpenDialog("Open", "", "", "", 0)
if $FileName
$rtfSource.LoadFile($FileName)
endif
endfunction

THe TextBox doesn't load the file allthough it is there with full filename (maybe because it's not rtf ?)
_________________________