May 29, 2002 #1 knovak Programmer Dec 18, 2001 17 US Every DLL compiled with VB contains a GUID which uniquely identifies that DLL. Is there a way to read this GUID directly out of the DLL (binary) file? Thanks, Kyle
Every DLL compiled with VB contains a GUID which uniquely identifies that DLL. Is there a way to read this GUID directly out of the DLL (binary) file? Thanks, Kyle
Jun 24, 2002 #2 LauDse Programmer Jan 2, 2002 38 DE Hi knovak, this is easy! Make a reference to "TypeLib Information" (tlbinf32.dll). Dim tlb As TLI.TypeLibInfo Set tlb = TLI.TypeLibInfoFromFile("MSVBVM60.DLL" MsgBox tlb.Guid That's all bye LauDse Upvote 0 Downvote
Hi knovak, this is easy! Make a reference to "TypeLib Information" (tlbinf32.dll). Dim tlb As TLI.TypeLibInfo Set tlb = TLI.TypeLibInfoFromFile("MSVBVM60.DLL" MsgBox tlb.Guid That's all bye LauDse