[C++]Base de registre
Fermé
teebo
Messages postés
33491
Date d'inscription
jeudi 14 octobre 2004
Statut
Modérateur
Dernière intervention
24 février 2011
-
13 nov. 2003 à 10:26
b1mfhp77 - 6 déc. 2003 à 21:20
b1mfhp77 - 6 déc. 2003 à 21:20
A voir également:
- [C++]Base de registre
- Registre windows - Guide
- Formules excel de base - Guide
- Formules mathématiques de base - Télécharger - Études & Formations
- #1046 - aucune base n'a été sélectionnée - Forum MySQL
- Gigaset ne reconnait plus sa base - Forum telephonie fixe
4 réponses
teebo
Messages postés
33491
Date d'inscription
jeudi 14 octobre 2004
Statut
Modérateur
Dernière intervention
24 février 2011
1 793
13 nov. 2003 à 10:29
13 nov. 2003 à 10:29
Ca c'est le resultat de mon dernier essai en date, les DWORD disparaissent carrement alors que j'ai pourtant un DWORD mais je peux aussi avoir ca comme resultat:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Synergy\Synergy]
"server"=""
"stringvalue"="dfv"
"binaryvalue"=hex:30,31,2c,30
"multistringvalue"=hex(7):36,00,61,00,2c,00,30,00
"expandablestringvalue"=hex(2):37,00,31,00,2c,00,30,00
"debug"=dword:30303030
"isServer"=dword:30303030
. .
\_/
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Synergy\Synergy]
"server"=""
"stringvalue"="dfv"
"binaryvalue"=hex:30,31,2c,30
"multistringvalue"=hex(7):36,00,61,00,2c,00,30,00
"expandablestringvalue"=hex(2):37,00,31,00,2c,00,30,00
"debug"=dword:30303030
"isServer"=dword:30303030
. .
\_/
Heeeeeeuuuuuuu
teebo
Messages postés
33491
Date d'inscription
jeudi 14 octobre 2004
Statut
Modérateur
Dernière intervention
24 février 2011
1 793
13 nov. 2003 à 10:30
13 nov. 2003 à 10:30
Je rentre mes variables la:
. .
\_/
void wordXML::load (IXMLDOMElementPtr elt) { //string name; string temp; elementRoot=elt; type=3; //Fill word value name and size this->getatt ("name",wdName); //wdName=name.c_str (); temp=elementRoot->text; int sep=temp.find_first_of (':'); int end = (int)temp.length() ; if (sep<2) { wdValue=new BYTE[temp.length()+1]; memset(wdValue,0,temp.length()+1); memcpy(wdValue,temp.c_str (),temp.length()); //wdValue=(DWORD)temp.c_str(); wdType=REG_SZ; wdSize=sizeof(REG_SZ); } else { wdValue=new BYTE [temp.substr(sep+1,end).length()+1]; memset(wdValue,0,temp.substr(sep+1,end).length()+1); memcpy(wdValue,temp.substr(sep+1,end).c_str (),temp.substr(sep+1,end).length()); // wdValue=(DWORD)temp.substr(sep+1,end).c_str (); string temp2=temp.substr(0,sep); if (temp2.compare ("hex")==0 ) { // wdValue=temp.substr (sep+1,end).c_str (); wdType=REG_BINARY; wdSize=sizeof(REG_BINARY); } else if (temp2.compare("hex(7)")==0) { // wdValue=temp.substr (sep+1,end).c_str (); wdType=REG_MULTI_SZ; wdSize=sizeof(REG_MULTI_SZ); } else if (temp2.compare("hex(2)")==0) { // wdValue=temp.substr (sep+1,end).c_str (); wdType=REG_EXPAND_SZ; wdSize=sizeof(REG_EXPAND_SZ); } else//dword most probably { // wdValue=temp.substr (sep+1,end).c_str (); // wdValue=(DWORD)1; wdType=REG_DWORD; wdSize=sizeof(REG_DWORD); } } }
. .
\_/
Heeeeeeuuuuuuu
teebo
Messages postés
33491
Date d'inscription
jeudi 14 octobre 2004
Statut
Modérateur
Dernière intervention
24 février 2011
1 793
13 nov. 2003 à 10:31
13 nov. 2003 à 10:31
Et j'ecris dans mon registre ici:
. .
\_/
int wordXML::writeReg(HKEY * openedKey) { RegSetValueEx(*openedKey,wdName.c_str (),0,wdType,(BYTE *)wdValue,wdSize); return 0; }
. .
\_/
Heeeeeeuuuuuuu