码迷,mamicode.com
首页 > 其他好文 > 详细

ShowMessageFmt 用法

时间:2016-10-25 09:44:57      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:cti   str   log   .com   img   默认   bsp   format   span   

 

举例:ShowMessageFmt(‘n1:%x; n2:%x‘, [n1,n2]);

     技术分享 显示Params 为 array[integer] of TvarRec

 

 进制表示 %o(8)   printf("%d(10)  %x(16)

procedure ShowMessageFmt(const Msg: string; Params: array of const);
begin
  ShowMessage(Format(Msg, Params));
end;

function Format(const Format: string; const Args: array of const): string;
begin
   Result := System.SysUtils.Format(Format, Args, FormatSettings); //FormatSettings这个格式默认在哪里设定?
end;

ShowMessageFmt 用法

标签:cti   str   log   .com   img   默认   bsp   format   span   

原文地址:http://www.cnblogs.com/rogge7/p/5995378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!