GDI/GDI+从入门到精通视频教程(全部)
admin | 开发经验 | 2013-06-28
前言:学习GDI_GDI_Plus与本讲座的意义和综合题介绍
百度云下载地址:http://pan.baidu.com/share/link?shareid=371331&uk=588792916
金山快盘下载地址:http://www.kuaipan.cn/file/id_15267230052811367.htm
第一讲:GDI/GDI+从入门到精通》视频教程-[字幕版]
百度云下载地址:http://pan.baidu.com/share/link?shareid=371441&... [阅读全文]
OUTLOOK.EXE 引起 ntdll.dll 异常代码: 0xc0000005
admin | 开发经验 | 2013-06-28
根据以下错误信息:
——————————————————————————
错误应用程序名称: OUTLOOK.EXE,版本: 14.0.6131.5000,时间戳: 0x509b1020
错误模块名称: ntdll.dll,版本: 6.1.7601.17725,时间... [阅读全文]
双击EXE文件提示不是有效的Win32应用程
admin | 开发经验 | 2013-06-26
如果xxx.exe不是有效的Win32应用程序的时候,一般出现这种问题是两种情况引起的,一种是exe文件关联出现了问题,另一种就是自己的计算机中毒引起的。
如下图所示:
想判断自己的电脑到底是因为exe文件关联引起的还是因为中毒而引起的的。其实很简单,是双击这一个EXE文件就出现不是有效的Win32应用程序,还是双击所有的EXE文件出现这种问题,就知道了,... [阅读全文]
C语言写监控守护进程
admin | C++ | 2013-06-25
C++
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <sys/wait... [阅读全文]
查询端口是否被占用,并找出占用端口的进程
admin | Windows api | 2013-06-25
C++
windows下的一个查询端口是否被占用的函数,若端口被占用,则输出占用该端口的进程。
bool CheckPortState( IN unsigned num)
{
PMIB_TCPTABLE_OWNER_PID pTcpTable;
pTcpTable = new MIB_TCPTABLE_OWNER_PID;
//获取所需要的内存大小
DWORD tmpSize = sizeof(MIB_TCPTABLE_OWNER_PID);
GetExtendedTcpTa... [阅读全文]
c链表的实现:增、删、改、查
admin | win32 | 2013-06-25
C++
/**
* @todo c链表操作:CURD
* @author Koma
**/
#include<stdio.h>
#include<stdlib.h>
typedef struct node{
int data;
struct node *next;
}LNode, *LinkList;
/**
* 初始化并创建一个带头节点的链表
**/
LinkList init( int len ) {
int i;
LinkList p, r, list;
list = (... [阅读全文]
QT实现截图功能并识别其中的二维码
admin | Qt Gui | 2013-06-25
C++
1.按下ctrl+alt+z截图
2.按下ctrl+alt+x识别二维码
3.按下ctrl+alt+s保存图片
使用了zxing库实现二维码识别
使用QT第三方库libQtx中的QxtGlobalShortcut实现监听全局热键
//mainwindow.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWind... [阅读全文]
Visual C++ 中操纵 MS Word
admin | C++ | 2013-06-24
使用VC编程来操纵Office。你可以实现诸如:Word文件打印、传送数据到Word文档、发送E-MAIL、自动产生表格、Excel数据统计、圆饼图,直方图显示、自动报表生成、播放幻灯、doc,txt,HTML,rtf文件转换、中文简繁体转换、拼音或笔画排序……只要是Office能够实现的功能,都可以在你写的程序中调用。仔细阅读下面的说明,并下载源文件进行参考... [阅读全文]
qq在线状态代码
admin | Php | 2013-06-21
<script>var online= new Array();</script> <script src=”http://webpresence.qq.com/getonline?Type=1&你的QQ号码:”></script> <script>if(online[0]==0){document.write(‘<a target=”_blank” href=”http://wpa.qq.com/msgrd?v=1&uin=你的QQ号码&site=qq&menu... [阅读全文]
Usage of Google Translator Api For Free !!!!!!!
admin | Php | 2013-06-19
Hello Friends,
I found a hack to use Google Translator services.
As I was working on my scrapper project, category titles were needed to translated from Dutch to English and we do not wanted to use any paid service.
I have tracked the requests made From translate.google.com and gathered them, then fetched responses from... [阅读全文]