用什么函数 来实现VC++里面 MessageBox (弹出消息框)功能 !呵呵 我不是学delphi 的所以 要问问。help!

解决方案 »

  1.   

    在delphi中也可以正常使用messagebox啊
      

  2.   

    Begin  with Application do
      begin
        NormalizeTopMosts;
        MessageBox('This should be on top.', 'Look', [smbOK]);
        RestoreTopMosts;
      end;
    end;
      

  3.   

    Delphi 对winapi的封装很好啊。多数都可以直接用。
    ==========================================
    欢迎使用 Forums Helper 论坛助手... [助您多、快、好、爽上CSDN...]
    程序最后更新2004年7月11日          [Powered By ChinaOK]
      

  4.   

    MessageBox(self.Handle,Pchar('MessageBox'),PChar('Caption'),MB_OK or MB_ICONINFORMATION);
      

  5.   

    没那么复杂,就写:
    Application.MessageBox('这里写弹出内容', '这里写标题内容', MB_OKCANCEL);
    经济实惠,Delphi这点做的好。