我想使用ShellExecute,以便用戶可以從他的默認電子郵件程序發送電子郵件;例如空白字符ofr在電子郵件中的ShellExecute正文
const
CRLF = '%0D%0A';
var
Body: string;
begin
Body := 'Information from my program'+CRLF+
'that is put in the body of the email';
ShellExecute(Application.Handle, 'open', PChar('?Subject=My Subject&Body=' +
Body),nil, nil, SW_SHOWNORMAL);
我想用信息列格式化正文。我怎樣才能放入一個白色空間?看起來,%20將爲單一空間工作 - 有時候,但它不適用於行首或多個連續空間。這種「」不字符串內工作,要麼:(
檢查%09(製表符)? –