Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Create a GUID

Total Hit ( 3855)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


When you build your ActiveX controls and components, Visual Basic automatically creates all the GUIDs as necessary. The same also happens in other cases, without you even realizing it: for instance when you make a MDB database replicable, the Jet Engine adds new fields and uses GUIDs to mark their contents.

In some circumstances, however, you may need to create GUIDs yourself, especially when you want to be absolutely sure that you are creating a unique number. Here's how you call the OLE kernel to get a fresh new GUID each time:

Click here to copy the following block
Declare Function CoCreateGuid_Alt Lib "OLE32.DLL" Alias "CoCreateGuid" (pGuid _
  As Any) As Long
Declare Function StringFromGUID2_Alt Lib "OLE32.DLL" Alias "StringFromGUID2" _
  (pGuid As Any, ByVal address As Long, ByVal Max As Long) As Long

Function CreateGUID() As String
  Dim res As String, resLen As Long, guid(15) As Byte
  res = Space$(128)
  CoCreateGuid_Alt guid(0)
  resLen = StringFromGUID2_Alt(guid(0), ByVal StrPtr(res), 128)
  CreateGUID = Left$(res, resLen - 1)
End Function

I developed this routine when writing my Addin Master code generator, which generates entire working add-ins from the ground up. When you create add-ins that work in dockable windows you need assign them a GUID, and that's something that VB can't do for you.



Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.