那位大哥知道!!
     showmessageeft()的用法!!!!!!
      谢谢!!!

解决方案 »

  1.   

    procedure ShowMessageFmt(const Msg: string; Params: array of const)
      

  2.   

    原型如下:
    procedure ShowMessageFmt(const Msg: string; Params: array of const)
      

  3.   

    ShowMessageFmt('There are now %d records in the table', [DataSet.RecordCount])相当于
    var s: string;
    s:=Format('There are now %d records in the table', [DataSet.RecordCount]);
    ShowMessage(s);
      

  4.   

    按格式输出API函数..
    D6的MSHELP有...
      

  5.   

    那位大哥举出一下关于procedure ShowMessageFmt(const Msg: string; Params: array of const)的例子,小弟感激不尽!!!
    谢谢以上朋友们的帮助!!!!!!!!!!