C++
Hello_Roson
这个作者很懒,什么都没留下…
展开
-
虚函数与虚继承寻踪
class Base { public: int m_base; virtual void b_fun1(); virtual void b_fun2(); }; class DerivedA : public Base { public: virtual void dav_fun(); void da_fun1(); private: static int m_staticA; c原创 2014-08-13 10:51:33 · 494 阅读 · 0 评论 -
Windows创建服务
首先,附上Windows创建服务的源代码,这个很好用的,大家一般都是选择的这个使用。 [cpp] #include"XXXX.h" //包含的头文件 //定义全局函数变量 void Init(); BOOL IsInstalled(); BOOL Install(); BOOL Uninstall(); void LogEvent(LPCTSTR psz转载 2014-09-27 00:20:39 · 767 阅读 · 0 评论 -
创建Windows服务in C++
附录一:NTService.h // ntservice.h // // Definitions for CNTService // #ifndef _NTSERVICE_H_ #define _NTSERVICE_H_ #include "ntservmsg.h" // Event message ids #include #include #include "W转载 2014-09-27 19:30:31 · 675 阅读 · 0 评论 -
创建Windows服务in C++
class CNTService { [...] // 静态数据 static CNTService* m_pThis; // nasty hack to get object ptr [...] };转载 2014-09-27 21:19:53 · 594 阅读 · 0 评论 -
检测数据库是否连接
如何检测SQL Server 服务是否可用,可以连接,以保证任何时候,用户输入数据的工作量不白费,节约客户的时间,如果发现SQL Server服务器不可用,要马上通知用户,阻止用户继续输入数据。做到软件是为解决问题,而不是增加麻烦。 我想到的第一个办法,是在保存数据的时候,检测服务器可否连接,这是必须的,代码如下转载 2014-10-07 14:15:35 · 1702 阅读 · 1 评论