delphi--html格式的email
(2008-10-13 15:18:03)
标签:
delphi编程it |
分类: 计算机 |
IHTMLDocument2* document = NULL;
IHTMLElement
BSTR
...
web->Navigate(WideString(cate));
while(web->Busy)
msg->Recipients->EMailAddresses =
...;
msg->From->Text
=
msg->Subject = ...;
msg->Body->Clear();
if((!web->Busy) &&
(web->Document!= NULL)
&&
(SUCCEEDED(web->Document->QueryInterface(::IID_IHTMLDocument2,(LPVOID
*)&document))));
{
...
后一篇:RSS学习笔记--RSS简介