bcb 中的MessageBox 如何加入变量??? 谢谢!!!(50分)

  • 主题发起人 主题发起人 superFans
  • 开始时间 开始时间
S

superFans

Unregistered / Unconfirmed
GUEST, unregistred user!
bcb 中的MessageBox 如何加入变量?? 谢谢!!!
String sss;
sss="Hello";
AppliCation->MessageBox(sss,sss,MB_YES);
--提示有错,请问如何处理???
谢谢 !!!!
 
在delphi中可以实现:
procedure TForm1.Button1Click(Sender: TObject);
var
s: String;
begin
s:='Hello';
AppliCation.MessageBox(pchar(s),pchar(s),MB_OK);
//不是MB_YES
end;
 
Delphi的我已知道。就是在 bcb 中不知如何处理.
 
MessageBox(sss.to_str(),sss.to_str(),MB_YES);
 
感谢 落木潇潇 的提示
写成如下格式通过
MessageBox(this->Handle,sss.c_str(),sss.c_str(),MB_YESNO);
再次感谢大家的参与,特别是 落木潇潇 先生(小姐).
 
后退
顶部