Blog Stats
  • Posts - 7
  • Articles - 0
  • Comments - 319
  • Trackbacks - 5

 

febbraio 2007 Blog Posts

Classe per leggere e scrivere da Registro

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...

 

 

Copyright © Sara Fabris