首页 > 编程 > Delphi > 正文

在Delphi中通过函数获取GUID

2019-11-18 18:01:10
字体:
来源:转载
供稿:网友
 

keyWord:
 ActiveX, TGUID, CoCreateGUID, GUIDToString

//---Test PRogram By Conan 2005/04/14---//
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs,
  ActiveX, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}


procedure TForm1.Button1Click(Sender: TObject);
var
  I   : Integer;
  sGUID  : string;
  TmpGUID: TGUID;
begin
  for I := 0 to 10 do
  begin
    if CoCreateGUID(TmpGUID) = S_OK then
      sGUID := GUIDToString(TmpGUID)
    else
      ShowMessage('Create GUID error!');
    ShowMessage(sGUID);
  end;
end;

end.



上一篇:Delphi数据库应用程序中常见错误

下一篇:Oracle中通过存储过程中返回数据集及在Delphi中使用

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注