febbraio 2007 Blog Posts
using namespace Microsoft::Win32;using namespace System;
La classe seguente permette di leggere e scrivere nel Registro di Sistema(classe in C++.net - Framework 1.1)
public __gc class Registro{private:
String *CU; //= S"CU"; //current userString *LM; // = S"LM"; //Local_MachineString *CR; // = S"CR"; //classes_rootString *UR; // = S"UR"; // UsersString *CC; // = S"CC"; // current_config
public:Registro(){CU = S"CU"; LM = S"LM";CR = S"CR";UR = S"UR";CC = S"CC";};
String* GetValue(String* key, String* subKey, String* entry);int CreateKey(String* key, String* subKey);int setValue(String* key, String* subKey, String* item, Object* _value);int deleteValue(String* key, String *subKey, String *entry);};
Il seguente metodo permette di ottenere un valore da una chiave di Registro.Il primo parametro...