Re: Generating unique IDs
Try GUIDGEN.EXE
Incedentally, are you using DCOM? If not, what then?
Dave
Re: Generating unique IDs
What are you using to send messages from one application to the other?
Re: Generating unique IDs
If you need a GUID for each message sent, there's an API call that will generate one. I *think* it's "CreateGUID" but not sure.
I've used it before but don't have the code infront of me.
Tg
Re: Generating unique IDs
Quote:
Originally Posted by techgnome
If you need a GUID for each message sent, there's an API call that will generate one. I *think* it's "CreateGUID" but not sure.
I've used it before but don't have the code infront of me.
Tg
Thank you. I knew there was an API (because I've seen if before) but could remember the name.
http://www.mentalis.org/apilist/CoCreateGuid.shtml
Re: Generating unique IDs
Quote:
Originally Posted by DigiRev
What are you using to send messages from one application to the other?
I'm using Microsoft Winsock.