Hab hier noch einen "alten" Tip gefunden
When the users click on the new button, the
signature file is imported into the message.
The code behind the buttom is:
@Command([TextSetFontFace];"Courier");
@Command([FileImport];"ASCII Text";"c:\\notes\\data\\Signature.txt")
=============================
At this point in time, this functionality is not inherent within notes. What you can do to get around this, you can add an action button to the form that would append this to the end of the memo
@Command([EditInsertText];@NewLine);
@Command([TextSetFontFace];"Courier");
@Command([TextSetFontSize];"10");
@Command([TextNormal]);
@Command([TextSetFontColor];[DarkBlue]) ;
@Command([FileImport];"ASCII Text";"c:\\sigs\\signaturefile.txt"))
Or in the send button add this fuctionality.