许明会的计算机技术主页

Language:C,C++,.NET Framework(C#)
Thinking:Design Pattern,Algorithm,WPF,Windows Internals
Database:SQLServer,Oracle,MySQL,PostSQL
IT:MCITP,Exchange,Lync,Virtualization,CCNP

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

03 2016 档案

利用委托实现异步调用
摘要:同步调用示例(委托是一个类型安全的,面向对象的指针) using System; using System.Threading; namespace Demo { public delegate int Operate(int x, int y); public class DelegateAsync { static int Add(int a, i... 阅读全文

posted @ 2016-03-29 23:52 许明会 阅读(658) 评论(0) 推荐(0) 编辑

通过Windows组策略限制证书组织流氓软件的安装运行
摘要:https://liwei2.com/2015/11/27/378.html关于如何提取证书,请参阅:https://www.zhihu.com/question/26917038http://www.appinn.com/ 小众软件,不错的站点. 关于如何拉黑证书,代码如下: 阅读全文

posted @ 2016-03-29 00:14 许明会 阅读(1298) 评论(0) 推荐(0) 编辑

枚举\位域\结构综合实验
摘要:1.枚举项和数值,字符串如何互相转换?2.结构和byte[]数组间如何互相转换? 这在通讯上普遍使用!3.位域在工控上DIO控制普遍使用,如何借鉴.OK,上代码! 阅读全文

posted @ 2016-03-27 18:41 许明会 阅读(475) 评论(0) 推荐(0) 编辑

public static void Invoke (Action action)
摘要:using System; using System.Security.Principal; using System.Security.Permissions; namespace Demo { class MainClass { public static void Invoke (Action action) { ... 阅读全文

posted @ 2016-03-26 22:44 许明会 阅读(476) 评论(0) 推荐(0) 编辑

C#编写WIN32系统托盘程序
摘要:基本功能概述: 阅读全文

posted @ 2016-03-25 13:19 许明会 阅读(804) 评论(0) 推荐(0) 编辑

C#的互操作性:缓冲区、结构、指针
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Runtime.InteropServices; namespace Interop { class Program ... 阅读全文

posted @ 2016-03-25 00:08 许明会 阅读(589) 评论(0) 推荐(0) 编辑

SQLServer异步调用,批量复制
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Runtime.InteropServices; using System.Data; using System.Data.Common; ... 阅读全文

posted @ 2016-03-24 23:10 许明会 阅读(873) 评论(0) 推荐(0) 编辑

Python体验(10)-图形界面之计算器
摘要:1 import wx 2 class Form(wx.Frame): 3 def __init__( self, parent, id, title ): 4 wx.Frame.__init__(self,parent,id,title,wx.DefaultPosition,wx.Size(300, 250)) 5 self.... 阅读全文

posted @ 2016-03-21 00:58 许明会 阅读(1825) 评论(0) 推荐(0) 编辑

Python体验(09)-图形界面之Pannel和Sizer
摘要:import wx class Form(wx.Frame): def __init__(self,parent,ID,title): wx.Frame.__init__(self,parent,ID,title) panel = wx.Panel(self,-1) wx.Button(panel,-1,"Button1",(0,0)... 阅读全文

posted @ 2016-03-20 23:32 许明会 阅读(1133) 评论(0) 推荐(0) 编辑

Python体验(08)-图形界面之工具栏和状态栏
摘要:# coding=utf-8 import wx # 导入必须的Python包 class MenuForm(wx.Frame): def OnQuit(self,event): self.Close() def OnOpen(self,event): self.statusbar.SetStatusText('Open a File!')... 阅读全文

posted @ 2016-03-20 22:35 许明会 阅读(2139) 评论(0) 推荐(0) 编辑

Python体验(07)-图形界面之菜单
摘要:顺序安装以下程序: 阅读全文

posted @ 2016-03-20 20:59 许明会 阅读(1921) 评论(0) 推荐(0) 编辑

C#利用WIN32实现按键注册
摘要:  阅读全文

posted @ 2016-03-14 00:22 许明会 阅读(750) 评论(0) 推荐(0) 编辑

Javascript猜数字游戏
摘要:  阅读全文

posted @ 2016-03-14 00:10 许明会 阅读(2477) 评论(0) 推荐(0) 编辑

序列化/反序列化/序列化事件/加解密
摘要:  阅读全文

posted @ 2016-03-14 00:09 许明会 阅读(763) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示