上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 92 下一页
// The following ifdef block is the standard way of creating macros which make exporting // from a DLL simpler. All files within this DLL are compiled with the HOOK_EXPORTS// symbol defined on the command line. this symbol should not be defined on any project// that uses this DLL. This way any other Read More
posted @ 2012-04-02 13:35 庚武 Views(535) Comments(0) Diggs(0) Edit
// InnerHookDlg.cpp : implementation file//#include "stdafx.h"#include "InnerHook.h"#include "InnerHookDlg.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif////////////////////////////////////////////////////////////////////// Read More
posted @ 2012-04-02 13:14 庚武 Views(395) Comments(0) Diggs(0) Edit
//filename : Dll1.h#ifndef _DLL1_H_ #define _DLL1_H_#ifdef DLL1_API#else#define DLL1_API extern "C" _declspec(dllimport)#endif // DLL1_APIDLL1_API int _stdcall add(int a,int b);DLL1_API int _stdcall substract(int a,int b);#endif //filename:Dll1.cpp#define DLL1_API extern "C" _dec Read More
posted @ 2012-03-30 16:30 庚武 Views(409) Comments(0) Diggs(0) Edit
protected void Button1_Click(object sender, EventArgs e){ localhost.MyDemo MyService; // try to get the proxy from Session state MyService = Session["MyService"] as localhost.MyDemo; if (MyService == null) { // create the proxy MyService = new localhost.MyDemo(); ... Read More
posted @ 2012-03-30 14:07 庚武 Views(315) Comments(0) Diggs(0) Edit
http://files.cnblogs.com/wucg/ActiveX_Demo_Clock.zip一个典型的ActiveX控件需要提供三种特性:属性、方法和事件。 Read More
posted @ 2012-03-29 17:20 庚武 Views(328) Comments(0) Diggs(0) Edit
邮槽是基于广播通信体系设计出来的,它彩用无连接的不可靠的数据传输。邮槽是一种单向通信机制,创建邮槽的服务器进程读取数据,打开邮槽的客户机进程写入数据。// MailslotSvrView.cpp : implementation of the CMailslotSvrView class//#include "stdafx.h"#include "MailslotSvr.h"#include "MailslotSvrDoc.h"#include "MailslotSvrView.h"#ifdef _DEBUG#de Read More
posted @ 2012-03-28 15:37 庚武 Views(212) Comments(0) Diggs(0) Edit
// NamedPipeSrvView.cpp : implementation of the CNamedPipeSrvView class//#include "stdafx.h"#include "NamedPipeSrv.h"#include "NamedPipeSrvDoc.h"#include "NamedPipeSrvView.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;# Read More
posted @ 2012-03-28 13:48 庚武 Views(210) Comments(0) Diggs(0) Edit
// ParentView.cpp : implementation of the CParentView class//#include "stdafx.h"#include "Parent.h"#include "ParentDoc.h"#include "ParentView.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif///////////////////////// Read More
posted @ 2012-03-27 17:51 庚武 Views(229) Comments(0) Diggs(0) Edit
// TestClipboardDlg.cpp : implementation file//#include "stdafx.h"#include "TestClipboard.h"#include "TestClipboardDlg.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif////////////////////////////////////////////////////////// Read More
posted @ 2012-03-27 01:40 庚武 Views(260) Comments(0) Diggs(0) Edit
/*console.dir( jQuery('#selector a.jt:eq(0)').data('events') );jQuery.each($('#selector a.jt:eq(0)').data('events'), function(i, event){ jQuery.each(event, function(i, handler){ console.log( handler.toString() ); });});*///console.log(eval('1+1'))console.time( Read More
posted @ 2012-03-26 12:09 庚武 Views(364) Comments(0) Diggs(0) Edit
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 92 下一页