-
监视目录下的文件变化:增加,删除,改名
监视目录下的文件变化:增加,删除,改名-surveillance files in the directory changes : add, delete, rename
- 2022-02-03 03:06:42下载
- 积分:1
-
labwindows modbus rtu 源码
使用labwindows 2013sp2 编写的 modbus rtu 源码,纯c
- 2023-02-03 10:10:05下载
- 积分:1
-
一个很好的普通测试的实例,真的很好哦,包括了三角形、nextday和利润三个例子...
一个很好的普通测试的实例,真的很好哦,包括了三角形、nextday和利润三个例子-Black Box Testing a very good example of true Oh well, including the triangle, nextday and profits three examples
- 2022-01-27 16:03:37下载
- 积分:1
-
"一笔画回路问题"刚刚学习C++,学习怎么样用友元的基本用法!!1...
"一笔画回路问题"刚刚学习C++,学习怎么样用友元的基本用法!!1-err
- 2022-09-26 14:30:03下载
- 积分:1
-
understanding of the object types and examples to help the beginner JAVA
理解类和对象的例子,帮助初学JAVA的人-understanding of the object types and examples to help the beginner JAVA
- 2023-04-13 21:45:02下载
- 积分:1
-
按钮控件及分组框的应用,例子短小精悍,往多多指点
按钮控件及分组框的应用,例子短小精悍,往多多指点-Buttons and group box control application, for example, dapper, pointing to more
- 2022-02-07 22:25:46下载
- 积分:1
-
能对windows程序的托盘图标进行隐藏删除添加
能对windows程序的托盘图标进行隐藏删除添加-can windows procedures for the tray icon to delete hidden Add
- 2022-10-06 14:55:02下载
- 积分:1
-
registry manipulation functions.
注册表操作函数.-registry manipulation functions.
- 2023-08-12 03:25:02下载
- 积分:1
-
该单片机能实现00
该单片机能实现00-99的计数功能,有助于初学者掌握。-The single chip to achieve a 00-99 count features to help beginners to master.
- 2022-08-16 10:57:34下载
- 积分: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