摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Drawing;using System.Text;using System.Windows.Forms;using System.C... 阅读全文
posted @ 2009-05-07 14:37 yongbin621 阅读(712) 评论(0) 推荐(0) 编辑
摘要: usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Runtime.InteropServices;namespaceking... 阅读全文
posted @ 2009-05-07 11:54 yongbin621 阅读(4529) 评论(2) 推荐(0) 编辑
摘要: 本来园子里面已经有很多特别好的关于设计模式学习的文章,但一般都是概念性的或者都是些简单实例,没有用过设计模式的朋友看过之后虽然明白怎么回事了,但是对于自己实际项目中何时用设计模式就不太清楚了,本人借jillzhang开发的控件中的部分代码与大家讨论下模式在具体项目中的应用,好的代码应该与大家分享. 名词解释: 策略: 1:战略(学) 2:策略, ... 阅读全文
posted @ 2009-04-17 14:36 yongbin621 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 一.引用命名空间 System.Data.Linq System.Data.Linq.Mapping (需要在项目中先引用System.Data.Linq) 二.为数据库表创建实体类 Table(Name="Employees")]public class Employee{[Column(IsDbGenerated=true,IsPrimaryKey=true)]public int Em... 阅读全文
posted @ 2009-04-10 10:46 yongbin621 阅读(1918) 评论(0) 推荐(0) 编辑
摘要: 需求 若现有的网络已是共享Internet的网络,且您并不想对现有网络的运作有任何改变。那么可以将无线路由器作为AP来使用。本文以WGR614v5为例说明此种应用。 比较 某种意义上,AP相当于无线Hub,与Hub的主要区别在于,其与工作站连接的介质不是网线,而是以空气为介质的工作在特定频率范围的无线电磁波,工作站须装有AP client,即无线网卡。 连接 无论哪一种应用环境,一旦要作为AP,无... 阅读全文
posted @ 2009-04-10 10:43 yongbin621 阅读(724) 评论(0) 推荐(0) 编辑
摘要: http://sjz.focus.cn/news/2009-01-06/601176.html 阅读全文
posted @ 2009-04-08 16:37 yongbin621 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 移动服务是应用比较广泛的移动解决方案,其核心是利用移动计算和无线通信技术为企业现场服务人员提供全面、便捷、实时的信息服务。我们现在就为某电器制造商设计一套用于售后维修服务的移动解决方案。 该电器制造商目前售后维修服务的基本工作流程是:客户打电话报修,呼叫中心记录用户的基本信息(如姓名、地址和电话等等)和客户对故障的描述信 息,生成维修单,维修服务人员领取维修单,维修服务人员上门为客户服务,... 阅读全文
posted @ 2009-04-03 14:04 yongbin621 阅读(368) 评论(0) 推荐(0) 编辑
摘要: //标题为"桔子" MessageBox.Show("URL:http://www.shx.name/", "桔子"); //标题为"桔子",带"是/否"两个按钮 MessageBox.Show("URL:http://www.shx.name/", "桔子",MessageBoxButtons.YesNo); //标题为"桔子",带"是/否/取消"三个按钮,显示一个信息类型的图标 Me... 阅读全文
posted @ 2009-04-03 11:16 yongbin621 阅读(775) 评论(1) 推荐(1) 编辑
摘要: MessageBox.Show(dateTimePicker1.Value.ToString("yyyy-MM-dd 00:00:00")); dateTimePicker1.Value.ToString("yyyy-MM-dd : HH:mm:ss") MessageBox.Show(string.Format("{0:d}",dateTimePicker1.Value)); 阅读全文
posted @ 2009-04-03 10:43 yongbin621 阅读(4323) 评论(0) 推荐(0) 编辑
摘要: create table tb(id varchar(1),riqi datetime)insert into tb values('A' , '2009-01-22 21:22:22') insert into tb values('B' , '2009-01-22 19:21:11') insert into tb values('C' , '2009-01-22 23:10:22')go--... 阅读全文
posted @ 2009-04-03 10:18 yongbin621 阅读(335) 评论(0) 推荐(0) 编辑