About Nokia SMS Send

这个问题我已经郁闷了几天啦。谁能救我出苦海阿!

我的工具: Delphi7.0 + Nokia PC Connectivity SDK 3.0
问题是短信里不能发送中文!英文一切正常!
我尝试了设置各种编码方式。

下面的代码是最简单方式。
var
  pSMS: IShortMessage;
begin
  SMSSend.CreateShortMsg(pSMS);
  pSMS.Set_UserDataText(mSMSText.Lines.Text);
  pSMS.Set_OtherEndAddress(lePhoneNumber.Text);
  pSMS.Set_SCAddress(leSMSCenter.Text);
  SMSSend.Send(pSMS);
end;

posted @ 2004-10-05 14:40  monkeyking  阅读(1188)  评论(1编辑  收藏  举报