002
22.02.2006, 11:16 Uhr
ao
(Operator)
|
Zitat aus http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/vclrfcregkeyquerystringvalue.asp :
Zitat von msdn: |
LONG QueryStringValue( LPCTSTR pszValueName, LPTSTR pszValue, ULONG* pnChars ) throw( ); Parameters .... pnChars The size, in TCHARs, of the buffer pointed to by pszValue. When the method returns, pnChars contains the size, in TCHARs, of the string retrieved
|
D.h., dein dwCount wird von QueryStringValue verändert, also vor jedem Aufruf neu setzen! Sagte mmc20 auch schon. Außerdem:
Zitat: |
Return Value If the method succeeds, ERROR_SUCCESS is returned. If the method fails to read a value, it returns a nonzero error code defined in WINERROR.H. If the data referenced is not of type REG_SZ, ERROR_INVALID_DATA is returned.
|
Es ist immer eine gute Idee, die Rückgabe abzuholen und zu prüfen.
ao |