随笔分类 -  WINFORM

摘要:未能加载文件或程序集“System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a”或它的某一个依赖项。系统找不到指定的文件。 未能加载文件或程序集“System.Enterp 阅读全文
posted @ 2017-05-04 12:10 Jason_davis 阅读(3009) 评论(0) 推荐(0) 编辑
摘要:未能找到类型或命名空间名称“Coco”(是否缺少 using 指令或程序集引用),如果你确实引用了,那说明你引用的和你的项目环境版本不一样,.NET framework的问题,修改一样就OK了。 阅读全文
posted @ 2016-12-05 18:21 Jason_davis 阅读(1742) 评论(0) 推荐(0) 编辑
摘要:1、简述 private、 protected、 public、 internal 修饰符的访问权限。 private : 私有成员, 在类的内部才可以访问。public : 公共成员,完全公开,没有访问限制 protected : 保护成员,该类内部和继承类中可以访问。 internal: 当前程 阅读全文
posted @ 2016-04-06 00:06 Jason_davis 阅读(11359) 评论(3) 推荐(1) 编辑
摘要:TCP(Transmission Control Protocol传输控制协议)是一种面向连接的、可靠的、基于字节流的传输层通信协议,由IETF的RFC 793定义。在简化的计算机网络OSI模型中,它完成第四层传输层所指定的功能,用户数据报协议(UDP)是同一层内[1]另一个重要的传输协议。在因特网... 阅读全文
posted @ 2015-07-10 16:43 Jason_davis 阅读(5805) 评论(0) 推荐(1) 编辑
摘要:很常见的问题,很容易忽略,那么,我举了个小例子创建一个窗体应用程序,代码基本如下: 1 /// 2 /// 写文件 3 /// 4 /// 5 /// 6 private void button2_Click(... 阅读全文
posted @ 2014-10-30 22:18 Jason_davis 阅读(7172) 评论(0) 推荐(0) 编辑
摘要:根据网卡序列号设计软件注册通过注册软件获取本机网卡序列号,然后通过网卡序列号、随机数及指定算法生成注册码,最后将注册码写入注册表。 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel... 阅读全文
posted @ 2014-10-24 22:52 Jason_davis 阅读(2782) 评论(0) 推荐(0) 编辑
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Net;us... 阅读全文
posted @ 2014-10-21 23:07 Jason_davis 阅读(1083) 评论(0) 推荐(0) 编辑