GUID


GUID

A Globally Unique Identifier is a unique number that is used as an identifier in computer software.
Un Identificador Global Único es un número único que puede ser usado como un identificador en software para computadoras.

Problem 1
Cree a Wintempla Dialog Application called GList to create a list of GUIDs.
Cree una Aplicación de Diálogo de Wintempla llamada GList para crear una lista de GUIDs.

GListRun

stdafx.h
...
#include "rpc.h"
#pragma comment(lib, "Rpcrt4.lib")


GList.cpp
...
void GList::Window_Open(Win::Event& e)
{
     wstring text;
     GUID guid;
     ::CoInitialize(NULL);
     for (int i = 0 ; i < 10; i++)
     {
          ::CoCreateGuid(&guid);
          Sys::Convert::GuidToString(guid, text);
          tbxOutput.Text += text;
          tbxOutput.Text += L"\r\n";
     }
     ::CoUninitialize();
}



© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home