zoukankan      html  css  js  c++  java
  • Registry

    uses Registry;

        Registry为我们提供了操作注册表的方法,这里我们用TRegIniFile提供的方法,TRegIniFile继承自TRegistry,TRegIniFile提供的方法类似于前面讲到的操作Ini文件的方法,这样就大大简化了我们操作"神秘"注册表的方法,下面是常用的方法:

    1. function CreateKey(const Key: String): Boolean;  创建Key
    2. function OpenKey(const Key: String; CanCreate: Boolean): Boolean; 打开Key,当CanCreate为True时,如果Key不存在,会自动创建
    3. procedure EraseSection(const Section: String); 删除
    4. WriteString,WriteInteger,WriteBool,WriteCurrency 写值
    5. ReadString,ReadInteger,ReadBool,ReadCurrency  读值
    6. ReadSection,ReadSections,ReadSectionValues 这些是不是很眼熟,和INI文件的方法一样

    看例子

    • 创建节点

    删除值

    删除Key


    读取Key的列表以及读取Key下值的列表都与INI文件的操作类似,这里就不再熬述了.

  • 相关阅读:
    在Linux下OpenCV的下载和编译
    安装GDB-ImageWatch ,在QT中查看图像
    linux下对qt编写的程序进行部署
    GOQTTemplate简单介绍
    寻找激光的交叉点
    基于opencv和QT的摄像头采集代码( GoQTtemplate3持续更新)
    图像处理工程师的要求研究
    如何将QT的pro图标修改的更显著一些
    快速阅读《QT5.9 c++开发指南》2
    小米盒子连接老式电脑显示器(VGA接口)
  • 原文地址:https://www.cnblogs.com/xiaobao/p/1946808.html
Copyright © 2011-2022 走看看