-
基于Microsoft Visual Basic 6.0 的字体设置的一段程序
基于Microsoft Visual Basic 6.0 的字体设置的一段程序-Microsoft Visual Basic 6.0 based on the font settings for some procedures
- 2022-08-02 18:06:20下载
- 积分:1
-
基于 Java 的大市政水计费系统
为我的城市开发的水计费系统,以减少在计费中心的市政水手动完成的工作。每一步是做系统的帮助下,员工注册登记,登记的水量为每个客户、 查询,以及处理顾客投诉的服务。自动的水计费系统将有助于减少大量的论文工作和档案工作在其中会使简单的金融体系。它还将提供所有最新的信息 tocustomers。此系统可以适应其他计费的活动。
- 2022-03-24 09:53:18下载
- 积分:1
-
WinGate代理服务器编程
Wingate代理服务器编程-Wingate Proxy Server Programming
- 2023-06-25 10:45:03下载
- 积分:1
-
这是WINCE进行字体选择演示的的一个程序
这是WINCE进行字体选择演示的的一个程序-font choice demonstration of a procedure
- 2023-06-06 12:05:04下载
- 积分:1
-
开通或关闭ppc手机数据线充电功能的源代码
开通或关闭ppc手机数据线充电功能的源代码-Opened or closed ppc phone data line charging function source code
- 2023-02-27 20:45:03下载
- 积分:1
-
E-Book Kent Beck Test-driven development 2003
- 2023-04-23 22:35:04下载
- 积分:1
-
Simple delpghi opc client
Simple delpghi opc client
- 2022-02-02 16:45:53下载
- 积分:1
-
Windows NT Services library
Windows NT Services library-This library is full encapsulation of Microsoft Windows NT (NT4, 2k, XP and Vista) services API. > SERVICES IMPLEMENTATION* almost full Windows NT API encapsulation* full customization via callback* embeddable in DLL s* full logging support (via Windows events logs)* converts any C/C++ application (and others that support C linkage) in an NT service with just a function call > SERVICES CONTROL* install, modify, remove services* start, stop, pause, restart service* check service status* list services* get extended service informations* dependencies management* remote machine services access > MISC.* ansi/unicode support
- 2022-03-23 19:58:12下载
- 积分:1
-
北大ACM试题poj 第3067 3071题源码,很好的代码,希望对搞ACM的同学有帮助...
北大ACM试题poj 第3067 3071题源码,很好的代码,希望对搞ACM的同学有帮助
-Peking University ACM Chapter 30,673,071 question Question poj source code, good code, and want to help students engage in ACM
- 2022-04-29 23:26:00下载
- 积分:1
-
win开发用简易日志软件
简易日志显示软件。
支持显示日志、保存日志到文件、udp方式接收日志,支持显示日志网络来源。
本地调用:任何win软件使用如下函数,即可向该软件发送日志数据,日志软件会显示并保存到指定文件中。
int WriteLog(DWORD LogType, char* lpszFormat, ...)
{
static HWND m_hWndLog = NULL;
if (m_hWndLog == NULL)
{
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWndLog == NULL)
{
char cCurPath[MAX_PATH];
if (GetCurrentDirectoryA(MAX_PATH, cCurPath) > 0)
{
char cExePath[MAX_PATH];
wsprintfA(cExePath, "%sstk1Log.exe", cCurPath);
WinExec(cExePath, SW_SHOW);
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWndLog == NULL)
{
// AfxMessageBox("无法找到Stk1Log.exe用于显示日志!");
return -1;
}
}
}
}
else
{
if (IsWindow(m_hWndLog) == FALSE)
{
m_hWndLog = NULL;
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWnd
- 2022-07-25 17:36:54下载
- 积分:1