摘要:
#include int main(int argc, char* argv[]) { HANDLE hEvent= CreateEvent(NULL,true,true,"init"); if (hEvent) { if (GetLastError()==ERROR_ALREADY_EXISTS) { printf... 阅读全文
摘要:
当你想知道服务器的某个服务是否启动的时候,可是有没有端口扫描软件 这个时候telnet就可以帮助你确认该服务是否已启动了 如web服务 telnet ip 80 smtp邮件服务25 如果连接成功的话那么就证明web服务已经启动了 相反就是可能有网络问题或者服务没有启动 阅读全文
摘要:
Send-PostMessage.rar 阅读全文
摘要:
API之打印函数 AbortDoc 取消一份文档的打印 AbortPrinter 删除与一台打印机关联在一起的缓冲文件 AddForm 为打印机的表单列表添加一个新表单 AddJob 用于获取一个有效的路径名,以便用它为作业创建一个后台打印文件。它也会为作业分配一个作业编号 AddMonitor 为系统添加一个打印机监视器 AddPort 启动"添加端口"对话框,允许用户在系统可用端口... 阅读全文
摘要:
WaitForMultipleObjects、WaitForSingleObject、GetExitCodeThread // Thread.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include HANDLE hth[2]; DWORD WINAPI func1(L... 阅读全文
摘要:
下载 #include #include #define PORT 8888 int main() //server { WSADATA wsaData; int Ret = WSAStartup(MAKEWORD(2,2),&wsaData); printf("Server!\n"); if(Ret != 0) { printf("无... 阅读全文
摘要:
阅读全文
摘要:
patchadd -p 显示补丁列表 软件包管理 pkginfo [ -d [ device | pathname ] ] [ -l ] pkg_name 参数: -d 软件包所在的设备路径 -l 软件包的详细描述 阅读全文
摘要:
svcs –a |more # 可以列出当前所有的服务: STATE STIME FMRI legacy_run 1:58:26 lrc:/etc/rcS_d/S50sk98sol ... 阅读全文
摘要:
/usr/X/bin/kdmconfig 按右 选择Xsun Server Change Video Device / Monitor 按提示修改 保存 阅读全文
摘要:
目前的状态是: # inetadm | grep telnet 启动服务: # svcs enable svc:/network/telnet:default solaris的telnet服务启动却登录失败 在/etc/default/login 把CONSOLE=/DEV/CONSOLE注释掉就可以了 阅读全文
摘要:
DllTest.rar dll1.h #ifdef DLL1_API #else #define DLL1_API _declspec(dllimport) #endif DLL1_API int add(int a,int b); DLL1_API int sub (int a,int b); class DLL1_API PO //导出整个类 { public: int outpu... 阅读全文
摘要:
Font fn = new Font("", 12,FontStyle.Bold); textBox.Font = fn; 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; namespace CEncrypt { public class Encrypt { public Encrypt() { } /**//// /// 加密 ///... 阅读全文
摘要:
Process p = new Process(); p.StartInfo.FileName = "cmd.exe"; //設定程序名 p.StartInfo.Arguments = "/c " command; //設定程式執行參數 p.StartInfo.UseShellExecute = false; //關閉Shell的使用 p.StartInfo.RedirectStandardIn... 阅读全文