资源简介
在完成软件交付时,往往先要个客户先试用一段时间,然后到时间需要提醒一下或者限制;我提供注册表读写,文件读写两种方式,通过时间,和打开的次数进行限制
代码片段和文件信息
// MyRegistry.cpp: implementation of the CMyRegistry class.
//
//////////////////////////////////////////////////////////////////////
#include “stdafx.h“
#include “MyRegistry.h“
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMyRegistry::CMyRegistry(HKEY hRootKey)
{
m_hRootKey = HKEY_CURRENT_USER;
}
CMyRegistry::~CMyRegistry()//在析构函数中关闭打开注册表句柄
{
Close();
}
/*================================================================
* 函数名: VerifyKey
* 参数: (HKEY hRootKey LPCTSTR pszPath)
* 功能描述: 判断给定的路径是否存在 (兼有打开的功能)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-11-08 16:20 软件限制\
文件 7740 2016-11-24 20:06 软件限制\MyRegistry.cpp
文件 1291 2016-11-08 15:30 软件限制\MyRegistry.h
文件 3276 2016-11-24 19:32 软件限制\限制源码.txt
- 上一篇:基于VHDL数字电子时钟设计
- 下一篇:Excel版本TOEFL词汇
评论
共有 条评论