Rocky Luck

83
Reputation
13 views

Registered User

Name Rocky Luck
Member for 7 months
Seen Oct 27 at 12:30
Website
Location Geldrop, The Netherlands
Age 63
Sep
23
answered How safe is javascript e-mail obfuscation really?
Aug
21
awarded  Teacher
Aug
21
answered Delphi: .exe with built-in packages: 600kb, .exe + external BPLs: 6MB. Why is that?
Jul
21
answered Javascript Beautifier
Jul
1
comment How to get the GIT in Delphi 7?
This function works, provided you use this: TGUID = '{00000323-0000-0000-C000-000000000046}' Thanks to both commenters for providing this answer.
Jul
1
comment How to get the GIT in Delphi 7?
This is brilliant. I thought the ClassID had to be found in the registry too. But it isn't! Go figure. Thank you for this answer!!
Jul
1
comment How to get the GIT in Delphi 7?
Michael: you had the absolute right answer. Thank you!!
Jul
1
awarded  Scholar
Jul
1
awarded  Supporter
Jul
1
comment How to get the GIT in Delphi 7?
Thanks for the answers, Rob. The code stems from a general library I found on the internet. So, that's wrong too. But still I didn't find the GlobalInterfaceTable classID in the registry.
Jul
1
comment How to get the GIT in Delphi 7?
My previous comment is not very clear. The last sentence should read: {00000323- etc. } is not in the registry either.
Jul
1
comment How to get the GIT in Delphi 7?
I didn't know about this utility. Now for the $100000 question : which class should I be looking for with this utility. Or how should I search for the IGlobalInterfaceTable class?
Jul
1
comment How to get the GIT in Delphi 7?
This is the definition from ActiveX.pas (delphi source): {$EXTERNALSYM IGlobalInterfaceTable} IGlobalInterfaceTable = interface(IUnknown) ['{00000146-0000-0000-C000-000000000046}'] function RegisterInterfaceInGlobal(const pUnk: IUnknown; const riid: TIID; out dwCookie: DWORD): HResult; stdcall; function RevokeInterfaceFromGlobal(dwCookie: DWORD): HResult; stdcall; function GetInterfaceFromGlobal(dwCookie: DWORD; const riid: TIID; out ppv): HResult; stdcall; end; 00000323 is not in the registry
Jul
1
awarded  Student
Jul
1
asked How to get the GIT in Delphi 7?