- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi 对话框单元
unit vsk;
interface
uses
Windows, Classes, Forms, Dialogs;
function Box(info:string;title: string ; Flags : Integer):Integer; //Ϣ
implementation
function Box(info:string;title: string ; Flags : Integer):Integer;
begin
Result := application.MessageBox(PChar(info),PChar(title),Flags);
end;
end.