How can I add GUID in my application. I m going to develop a messenger, I want that when the user is sign in his/her account, then window display message for his/her signing in and open his/her login of messenger.
How can I add GUID in my application. I m going to develop a messenger, I want that when the user is sign in his/her account, then window display message for his/her signing in and open his/her login of messenger.
iamalik wrote:How can I add GUID in my application. You can generate a new GUID using the shared NewGuid method in the GUID structure: Dim MyAppId as GUID = GUID.NewGuid Hope this helps Tom