Boringlamb's cnblog - Just like a Taurus!

Yesterday is History. Tomorrow is a Mystery, and Today is a gift. That's why we call it the Present.

导航

随笔分类 -  C#

【原创】昆虫棋离线复盘工具旗舰版v0.26 更新(BoardSpace.net hive games reviewer ultimate edition)
摘要:好久没上cnblog了。今天先发个:http://code.google.com/p/hive-game-reviewer-ultimate/ 阅读全文

posted @ 2012-05-14 10:35 Boringlamb 阅读(241) 评论(0) 推荐(0)

【原创】昆虫棋离线复盘工具v1.5 更新(BoardSpace.net hive games reviewer)
摘要:http://code.google.com/p/hive-game-reviewer/ 阅读全文

posted @ 2011-02-15 10:37 Boringlamb 阅读(412) 评论(0) 推荐(0)

【发现】如何防止UDPClient的Receive无可接收的数据包引起的阻塞
摘要:网上确实是鸟多,问了半天都没得到一个答复,但是被我偶然发现了。。。使用UdpClient.Client.Available 获取已经从网络接收且可供读取的数据量。this.host = new UdpClient(DefaultPort);IPEndPoint ep = new IPEndPoint(IPAddress.Any, DefaultPort);while(true) {  if(thi... 阅读全文

posted @ 2009-06-14 12:54 Boringlamb 阅读(3287) 评论(0) 推荐(2)

【转载】 基于UDP、TCP协议的C#网络编程
摘要:写这篇之前,先简单介绍一下TCP、UDP协议,深的讲不出来,有不明白的请问我秘书Dawnh同学。 TCP(传输控制协议)是TCP/IP 协议栈中的传输层协议,它通过序列确认以及包重发机制,提供可靠的数据流发送和到应用程序的虚拟连接服务。与IP协议相结合,TCP组成了因特网协议的核心。 UDP(用户数据报协议)是ISO参考模型中一种无连接的传输层协议,提供面向事务的简单不可靠信息传送服务。 UDP协... 阅读全文

posted @ 2009-06-12 15:26 Boringlamb 阅读(1004) 评论(1) 推荐(0)

【原创】Mr. Jack Online on Google Code
摘要:Mr. Jack Online 开发中,项目地址:http://code.google.com/p/mr-jack-online/ 阅读全文

posted @ 2009-06-11 20:35 Boringlamb 阅读(379) 评论(0) 推荐(0)

【发现】如何屏蔽掉WebBrowser在刷新网页等时候发出的声音
摘要:用webBrowser1.DocumentText = "<h1>Hello, world!</h1>";时会遇到听到塔塔塔塔的浏览器转向声音很烦,用webBrowser1.Document.OpenNew(true);webBrowser1.Document.Write("<h1>Hello, world!</h1>");就可以避免发声了,呵呵~~ 阅读全文

posted @ 2009-06-02 22:50 Boringlamb 阅读(1240) 评论(0) 推荐(0)

BCGControlBar Library for .NET Full Source v3.2 Retail Version
摘要:http://down1.3ddown.com/VhEex82ai4EW//Crack/2008/05B/BCGSoft.BCGControlBar.For.Dot.NET.v3.2.Full.Source-ZWT.exe?6102502418837x1222221748x6102503159571-dba0501bac807e7739181c69a6d313b5 BCGControlBar Li... 阅读全文

posted @ 2008-09-24 10:08 Boringlamb 阅读(985) 评论(2) 推荐(0)

Xtreme SuitePro ActiveX 2008 v12.0.1 更新了
摘要:http://rapidshare.com/files/126909709/Codejock.Xtreme.Suite.Pro.ActiveX.v12.0.1.Retail-ZWT.rar 阅读全文

posted @ 2008-07-10 11:47 Boringlamb 阅读(455) 评论(0) 推荐(0)

Codejock Xtreme Toolkit Pro v12.0.0 Full Release
摘要:地震了,发个东东纪念 下载地址: http://www.fixdown.com/goload10.asp?id=9337&gdcnc-downs3=42f42b7653ce2e6a 阅读全文

posted @ 2008-05-12 22:29 Boringlamb 阅读(1077) 评论(0) 推荐(0)

Kaxaml 1.0 Released
摘要:Kaxaml is a lightweight XAML editor that gives you a "split view" so you can see both your XAML and your rendered content (kind of like XamlPad but without the gigabyte of SDK). Kaxaml is a hobby and ... 阅读全文

posted @ 2008-04-07 15:18 Boringlamb 阅读(367) 评论(0) 推荐(0)

总结C#中得到程序当前工作目录和执行目录的一些方法
摘要:1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName 获取模块的完整路径。 2. System.Environment.CurrentDirectory 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。 3. System.IO.Directory.GetCurrent... 阅读全文

posted @ 2008-03-19 16:47 Boringlamb 阅读(352) 评论(0) 推荐(0)

resPickle 的应用,自己写了一个demo
摘要:这个demo演示了将图片资源集成到py文件中,这样只需要一个py文件而不需要带图片文件了,just for fun! 截图如下: 下载 ironpython 1.1 然后配制好环境参数,之后ipy PickelForm.py 就可以看到效果了,:) PickelForm.py下载:/Files/boringlamb/PickleForm.rar 阅读全文

posted @ 2007-11-09 16:40 Boringlamb 阅读(264) 评论(0) 推荐(0)

对 resPickle 的改进
摘要:resPickle容易出现编码问题,所以进行了修正 1from System import Convert 2from System.IO import MemoryStream 3from System.Runtime.Serialization.Formatters.Binary import BinaryFormatter 4import copy_reg 5 6_formatt... 阅读全文

posted @ 2007-11-08 10:34 Boringlamb 阅读(231) 评论(0) 推荐(0)

c#完全屏蔽Flash右键菜单
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropService... 阅读全文

posted @ 2007-10-16 23:40 Boringlamb 阅读(1211) 评论(2) 推荐(0)