Created an ActiveX dll today to create GUID’s for FootJoy.com orders. Course, it was pretty easy since this article, entitled “Build a GUID generating component”, essentially does it for me.
Registering and unregistering components is a bear, the scripts on this site make it easier.
Do you still manage footjoy.com???
Gaandu bhenchod time barbad karwata hai
easier:
Function createGuid()
Set TypeLib = Server.CreateObject(“Scriptlet.TypeLib”)
tg = TypeLib.Guid
createGuid = left(tg, len(tg)-2)
Set TypeLib = Nothing
End Function
Scriptlet.TypeLib is installed with Windows Scripting
This is way more helpful than anityhng else I’ve looked at.