Показать сообщение отдельно
  #1  
Старый 17.01.2008, 18:16
Аватар для Electronic_Arts
Electronic_Arts Electronic_Arts вне форума
Местный
 
Регистрация: 13.07.2006
Адрес: на земле
Сообщения: 562
Версия Delphi: Delphi 11
Репутация: 18
Восклицание Помогите разобраться

Почему не возможно читать значение ключа??
Код:
         Reg := TRegistry.Create;
   try
     Reg.RootKey := HKEY_CURRENT_USER;
     Key := 'Software\Microsoft\Windows\CurrentVersion\Policies\Explоrer';
     if Reg.OpenKeyReadOnly(Key) then
     begin
       if Reg.ValueExists('StartMenuLogOff') then
       begin
         RegKey := Reg.ReadInteger('StartMenuLogOff');
         Reg.CloseKey;
         edit1.Text :=inttostr(RegKey);
       end
       else
       edit1.Text:='';
     end;
   finally
     Reg.Free
   end;
Ответить с цитированием