摘要:
Windows启动时通常会有一大堆程序自动启动。不要以为管好了“开始→程序→启动”菜单就万事大吉,实际上,在Windows XP/2K中,让Windows自动启动程序的办法很多,下文告诉你最重要的两个文件夹和八个注册键 阅读全文
posted @ 2007-08-15 11:25 OldHawk 阅读(13177) 评论(1) 推荐(1)
|
|||
|
摘要:
Windows启动时通常会有一大堆程序自动启动。不要以为管好了“开始→程序→启动”菜单就万事大吉,实际上,在Windows XP/2K中,让Windows自动启动程序的办法很多,下文告诉你最重要的两个文件夹和八个注册键 阅读全文
posted @ 2007-08-15 11:25 OldHawk 阅读(13177) 评论(1) 推荐(1)
摘要:
SendMessage (ActiveControl.Handle, WM_Cut, 0, 0);
SendMessage (ActiveControl.Handle, WM_Copy, 0, 0);
SendMessage (ActiveControl.Handle, WM_Paste, 0, 0); 阅读全文
posted @ 2007-08-15 11:21 OldHawk 阅读(419) 评论(0) 推荐(0)
摘要:
多实例指同时有同一个应用程序的多个副本在运行。同一个应用程序的多个副本可以相互独立地同时运行,是Win32操作系统提供的一个功能。但有时,我们可能希望用户启动应用程序后就不再启动它的别的副本。比如某种设备资源的控制程序,像调制解调器和并行端口。这种情况下,用程序代码防止同时出现多个程序的副本在运行是非常必要的 阅读全文
posted @ 2007-08-15 11:15 OldHawk 阅读(5140) 评论(0) 推荐(0)
摘要:
用法:
如我们要判断'Live.exe'程序是否正在运行/是否已经启动
if exe_is_running(Live) then
....
else
....
阅读全文
posted @ 2007-08-15 11:05 OldHawk 阅读(1019) 评论(0) 推荐(0)
摘要:
There are lots of neat little things that are in many of the DLLs that Microsoft has installed in Windows. Most of them are documented in the Win32 API. However, there are a lot of them that are undocumented. This article shows how to use one of the undocumented functions available in user32.dll, MessageBoxTimeOut 阅读全文
posted @ 2007-08-15 10:59 OldHawk 阅读(915) 评论(0) 推荐(0) |
|||