请问如何在messagebox中试用widestring ?(50分)

  • 主题发起人 主题发起人 WRainbug!
  • 开始时间 开始时间
W

WRainbug!

Unregistered / Unconfirmed
GUEST, unregistred user!
var
strx : widestring;

Application.MessageBox( strx, Application.Title, MB_OK + MB_ICONINFORMATION);

提示 strx 处只支持ansistring, 请问如何在messagebox中试用widestring ?

thanks
 
uses
windows
直接使用
MessageBoxEx
它支持widestring
 
showmessage(strx);
Application.MessageBox(pointer(strx)),pointer(Application.Title),MB_OK + MB_ICONINFORMATION);
你试试看先
 
to apiao:
是MessageBoxW()吧.

thanks
 
多人接受答案了。
 
后退
顶部