程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 利用Delphi實現支持窗體的自定義函數(2)

利用Delphi實現支持窗體的自定義函數(2)

編輯:Delphi

最後附完整的此自定義函數的程序清單:

unit udfForm;
interface
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type TfrmShowMsg = class(TForm) 
Button1: TButton;
Label1: TLabel;
Button2: TButton;
private
{ Private declarations }
public
{ Public declarations } 
end; 
function ShowMsg(btn1, btn2, msg, titleMsg: string): Integer;
implementation 
{$R *.DFM}
function ShowMsg(btn1, btn2, msg, titleMsg: string): Integer;
var 
frmshowMsg: TfrmShowMsg; 
begin
frmShowMsg := TfrmShowMsg.Create(Application);
with frmShowMsg do
try
button1.Caption := btn1;
button2.Caption := btn2; 
Label1.Caption := msg;
Caption := titleMsg; 
if ShowModal=mrOK
then result:=1
else result:=2;
finally Free;
end;
end;
end.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved