pb中使用winapi生成全球唯一标示码(GUID,UUID)

1、定义结构及外部函数

global type uuid from structure
 ulong  data1
 uint  data2
 uint  data3
 character  data4[8]
end type

Function ulong UuidCreate(ref uuid lpUUID) LIBRARY "rpcrt4"
Function ulong UuidToString (ref uuid lpUUID, ref long lpUUIDString)  LIBRARY "rpcrt4" Alias for "UuidToStringA"
Function ulong RpcStringFree(long lpUUIDString) LIBRARY "rpcrt4"  Alias for "RpcStringFreeA"

2、函数主体

CONSTANT Long  RPC_S_OK = 0
CONSTANT Long  RPC_S_UUID_LOCAL_ONLY = 1824

Long ll_rtn
uuid u
ll_rtn = uuidcreate(u)  //Create a new UUID
IF ll_rtn = RPC_S_OK OR ll_rtn = RPC_S_UUID_LOCAL_ONLY THEN
     Long ll_pointer
     String ls_uuid
     ll_rtn = UuidToString(u,ll_pointer)
     ls_uuid = Upper(String (ll_pointer,"Address")) //Convert it to a string

     RpcStringFree(ll_pointer)//Remove the string from the memory
     RETURN ls_uuid
ELSE
     RETURN ""
END IF

注:发布时候可能需要rpcrt4.dll

附:另外一种生成guid的方法

oleObject PBObject
string ls_GUID
long ll_result

PBObject = CREATE oleObject

ll_result = PBObject.ConnectToNewObject &
   ("PowerBuilder.Application")
IF ll_result < 0 THEN
 messagebox("","连接失败:与PowerBuilder.Application连接出错!")
 Destroy PBObject
   return ""
ELSE
   ll_result = PBObject.GenerateGUID(REF ls_GUID)
END IF
Destroy PBObject

return Mid(ls_GUID,2,len(ls_GUID) - 2)

第二种方法在程序发布时候需要在客户端进行配置:

pbapl80.dll
pbaen80.tlb
rpcrt4.dll


修改注册表如下

Windows Registry Editor Version 5.00


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; PBAPPL.REG
;
; Registration information for PowerBuilder.Application.8
;
; All rights reserved.  No portion of this material may be copied in any way
; without prior written consent from Powersoft Corporation.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; Version independent ProgID entries

[HKEY_CLASSES_ROOT/PowerBuilder.Application]
@="PowerBuilder Automation"

[HKEY_CLASSES_ROOT/PowerBuilder.Application/CLSID]
@="{88880001-8888-1000-8000-080009AC61A9}"

[HKEY_CLASSES_ROOT/PowerBuilder.Application/CurVer]
@="PowerBuilder.Application.8"

[HKEY_CLASSES_ROOT/PowerBuilder.Application/NotInsertable]
@=""

; Version specific ProgID entries
[HKEY_CLASSES_ROOT/PowerBuilder.Application.8]
@="PowerBuilder 8.0 Automation"

[HKEY_CLASSES_ROOT/PowerBuilder.Application.8/CLSID]
@="{88880001-8888-1000-8000-080009AC61A9}"

[HKEY_CLASSES_ROOT/PowerBuilder.Application.8/NotInsertable]
@=""

; CLSID entries
[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}]
@="PowerBuilder Automation"

[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}/InProcServer32]
@="d://Program Files//Sybase//Shared//PowerBuilder//pbvm80.dll"
"ThreadingModel"="Apartment"

[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}/NotInsertable]
@=""

[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}/ProgID]
@="PowerBuilder.Application.8"

[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}/Programmable]
@=""

[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}/TypeLib]
@="{88880002-8888-1000-8000-080009AC61A9}"

[HKEY_CLASSES_ROOT/CLSID/{88880001-8888-1000-8000-080009AC61A9}/VersionIndependentProgID]
@="PowerBuilder.Application"


; Type library registration entries
[HKEY_CLASSES_ROOT/TypeLib/{88880002-8888-1000-8000-080009AC61A9}]

[HKEY_CLASSES_ROOT/TypeLib/{88880002-8888-1000-8000-080009AC61A9}/1.0]
@="PowerBuilder Automation Type Library"

[HKEY_CLASSES_ROOT/TypeLib/{88880002-8888-1000-8000-080009AC61A9}/1.0/0]

[HKEY_CLASSES_ROOT/TypeLib/{88880002-8888-1000-8000-080009AC61A9}/1.0/0/Win32]
@="d://Program Files//Sybase//Shared//PowerBuilder//PBAEN80.TLB"

[HKEY_CLASSES_ROOT/TypeLib/{88880002-8888-1000-8000-080009AC61A9}/1.0/9]

[HKEY_CLASSES_ROOT/TypeLib/{88880002-8888-1000-8000-080009AC61A9}/1.0/9/Win32]
@="d://Program Files//Sybase//Shared//PowerBuilder//PBAEN80.TLB"

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值