码迷,mamicode.com
首页 > Windows程序 > 详细

[原创] Delphi InputBox、InputQuery函数

时间:2019-12-18 17:44:34      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:提示信息   输出   res   bool   default   function   UNC   text   class   

Delphi InputBox、InputQuery函数

两个函数都是弹框提示输入信息

function InputQuery(const ACaption, APrompt: string; var Value: string): Boolean;    // 输出布尔值

function InputBox(const ACaption, APrompt, ADefault: string): string;    // 输出文本

 

看一下 InputBox 的函数原型(调用了InputQuery 函数,看来它才是鼻祖):

function InputBox(const ACaption, APrompt, ADefault: string): string;
begin
 Result := ADefault;
 InputQuery(ACaption, APrompt, Result);
end;

典型应用:

Edit1.Text:= InputBox(‘窗口的标题‘, ‘提示信息‘, ‘默认值‘);

  

InputQuery函数的返回值即点击了OK返回True,否则返回False

 

更新日期:2019.12.18

来源于:https://www.cnblogs.com/guorongtao/p/12061027.html

[原创] Delphi InputBox、InputQuery函数

标签:提示信息   输出   res   bool   default   function   UNC   text   class   

原文地址:https://www.cnblogs.com/guorongtao/p/12061027.html

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