目录: MessageBox() 和 PlaySound() 获得窗口 或屏幕大小 获得字体大小 输出文字 屏蔽和显示控制台窗口 1. MessageBox() 和 PlaySound() MessageBox() 参数说明 :link here PlaySound() 参数说明 :link here // test for function MessageBox() and PlaySound() // The program play the music file "c:\Users\Adm…
Windows API 常用函数 2014-10-15 14:21  xiashengwang  阅读(2105)  评论(0)  编辑  收藏 .Net中虽然类库很强的,但还是有些时候功能有限,掌握常用的api函数,会给我们解决问题提供另一种思路,下面给出自己常用到的Api函数,以备查询. 知道api函数,但却不知道c#或VB.net该如何声明,可以查询这个网站:http://pinvoke.net/ 1,SetForegroundWindow 将窗口显示到最前面,前提是窗口没有最小化. [D…
1.case语句 用于选择语句 SELECT ProductNumber, Category = CASE ProductLine WHEN 'R' THEN 'Road' WHEN 'M' THEN 'Mountain' WHEN 'T' THEN 'Touring' WHEN 'S' THEN 'Other sale items' ELSE 'Not for sale' END, Name FROM Production.Product ORDER BY ProductNumber; 用于u…
目录: 创建滚动条 滚动条函数(新老版本) 取得设备内容句柄hdc 设置 hdc 中的属性 画点画线 画填充图形 使用自定义的 画笔 和 画刷 矩形.区域和剪裁 关于GDI映像模式 其他常用的方便计算的函数 创建滚动条:在CreateWindow函数中window style 参数设置WS_VSCROLL | WS_HSCROLL 产生的消息:WM_VSCROLL / WM_HSCROLL 滚动条函数(老的API——滑块大小固定) SetScrollRange (hwnd, iBar, iMin…
转载网络 黑客常用WIN API函数整理 一.进程 创建进程: CreateProcess (,,,,,,,&si,&pi); WinExec("notepad",SW_SHOW); ShellExecute(,"open","notepad","c:\\a.txt","",SW_SHOW); ShellExecuteEx(&sei); 遍历进程: CreateToolhelp32S…
IP地址的转换 #include <arpa/inet.h>  int inet_aton(const char *strptr,                     struct in_addr *addrptr); //将strptr字符串转换成32位的网络字节序(二进制值--a.b.c.d->32). int_addr_t inet_addr(const char *strptr) //功能通上,返回地址. in_addr addr; addr.s_addr = inet_ad…
1.打印提示消息函数,不同级别消息使用不同的颜色显示.其中错误信息提示为红色字体. # ------------------------------------------------------------------------------- # Function name: prompt_msg() # Description : Pring prompt message to screen # Usage : prompt_msg "INFO" "Hello Worl…
.Net中虽然类库很强的,但还是有些时候功能有限,掌握常用的api函数,会给我们解决问题提供另一种思路,下面给出自己常用到的Api函数,以备查询. 知道api函数,但却不知道c#或VB.net该如何声明,可以查询这个网站:http://pinvoke.net/ 1,SetForegroundWindow 将窗口显示到最前面,前提是窗口没有最小化. [DllImport("User32.dll")] public static extern bool SetForegroundWindo…
1. DataFrame 处理缺失值  dropna() df2.dropna(axis=0, how='any', subset=[u'ToC'], inplace=True) 把在ToC列有缺失值的行去掉 补充:还可以用df.fillna()来把缺失值替换为某个特殊标记 df = df.fillna("missing") # 用字符串替代 df = df.fillna(df.mean()) # 用均值或者其它描述性统计值替代 2. 根据某维度计算重复的行   duplicated(…
转自:http://www.cnblogs.com/xiashengwang/p/4026259.html .NET中虽然类库很强,但还是有些时候功能有限,掌握常用的api函数, 会给我们解决问题提供另一种思路. 1.SetForegroundWindow 将窗口显示到最前面,前提是窗口没有最小化. [DIIImport("User32.dll")] public static extern bool SetForegroundWindow(IntPtrh Wnd); 2.ShowWi…