悟生慧

 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页

2012年5月21日

c#之combox下列列表框与datagridview及datagridviewtextboxcolumn关联显示

摘要: 1,在下拉列表框添加项2,在文本框显示下拉列表框的不同项3,显示datagridview的列表列标题为下拉列表框不同项的内容using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace learncomboxanddatagridview{ public partial class Form1 : Form { ... 阅读全文

posted @ 2012-05-21 16:45 悟生慧 阅读(3221) 评论(0) 推荐(0) 编辑

2012年5月19日

如何下载优酷视频?

摘要: 无需安装任何软件即可下载: 访问网站:http://www.kisstudou.com点击 优酷正在播放的视频 下方的 下载 安装客户端 安装 在新建下载中输入创建下载任务的网址 点击下载 阅读全文

posted @ 2012-05-19 18:27 悟生慧 阅读(269) 评论(0) 推荐(0) 编辑

2012年5月17日

C# Winfrom设置DataGridViewColumn标题对齐方式TitleAlignment

摘要: private void Form1_Load(object sender, EventArgs e) { DataTable table = new DataTable("Student"); DataColumn studentID = new DataColumn("studentID", typeof(string)); table.Columns.Add(studentID); DataColumn studentName = new DataColumn("stud... 阅读全文

posted @ 2012-05-17 18:31 悟生慧 阅读(4050) 评论(0) 推荐(0) 编辑

2012年5月16日

WCF 报错:通信对象System.ServiceModel.Channels.ServiceChannel 无法用于通信,因为其处于“出错”状态。

摘要: 通道闲置时间太久 也会出错~!配置文件中的receiveTimeout="00:30:00"设置为30分钟。把InactivityTimeout也设置为30分钟就可以。InactivityTimeout MSDN上的解释为:获取或设置服务在关闭之前保持非活动状态的时间间隔。如果想让客户端和服务器端保持长连接时,则将receiveTimeout设置的尽量大,例如1个小时。详情:http://blog.csdn.net/sweetwxh/article/details/6738650看到下面的说明后解决此问题http://social.msdn.microsoft.com/Fo 阅读全文

posted @ 2012-05-16 14:07 悟生慧 阅读(18265) 评论(0) 推荐(2) 编辑

2012年5月14日

C#的Spring.net中xml文件生成操作选择

摘要: xml文件的生成操作选择内容(Content) - 不编译该文件,但将其包含在“内容”(Content) 输出组中。编译(Compile) - 将该文件编译到生成输出中。此设置用于代码文件。 嵌入资源(Embedded Resource) - 将该文件作为 DLL 或可执行文件嵌入主项目生成输出中。内容的读写和运行目录下的其他文件没有区分。编译和嵌入资源读写,需要用到,例如:GetType().Assembly.GetManifestResourceStream(assembleName +".AppDesc.xml"); 阅读全文

posted @ 2012-05-14 17:16 悟生慧 阅读(433) 评论(0) 推荐(0) 编辑

2012年4月27日

C#使用方向键实现控件的移位

摘要: void textBox2_KeyDown(object sender,KeyEventArgs e) { Control ctr= (Control)sender; switch (e.KeyData) { case Keys.Right: if (ctr.Right == 0) { MessageBox.Show("已到顶"); } else ... 阅读全文

posted @ 2012-04-27 10:04 悟生慧 阅读(1761) 评论(0) 推荐(0) 编辑

2012年4月26日

WinFrom程序如何从数据库循环读取图片并合成

摘要: 数据库中有表backgroundimage(背景图片表),backgroundpoint(图片坐标表),systemheadimage(头像表),分别存放的背景,坐标及头像,我现在要对应遍历出三表相关信息并合成一张图片,合成方法我已经做好,如下代码:C# code原文转自:http://club.itqun.net/showtopic-257319.htmlusing System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Drawing.Drawing2D;name 阅读全文

posted @ 2012-04-26 18:14 悟生慧 阅读(698) 评论(1) 推荐(0) 编辑

winfrom中简单引用WebService

摘要: 新建工程中有两个项目一个是Web服务应用程序 如TestWebService 另一个是WinForm应用程序 如TestFormusing System;using System.Collections;using System.ComponentModel;using System.Data;using System.Linq;using System.Web;using System.Web.Services;using System.Web.Services.Protocols;using System.Xml.Linq;namespace TestWebService{ /// ... 阅读全文

posted @ 2012-04-26 17:44 悟生慧 阅读(1145) 评论(0) 推荐(0) 编辑

C#读取数据库返回泛型集合 把DataSet类型转换为List<T>泛型集合

摘要: /// <summary> /// 获取UserInfo泛型集合 /// </summary> /// <param name="connStr">数据库连接字符串</param> /// <param name="sqlStr">要查询的T-SQL</param> /// <returns></returns> public IList<UserInfo> GetUserInfoAll(string connStr, string sqlStr) 阅读全文

posted @ 2012-04-26 17:18 悟生慧 阅读(13288) 评论(0) 推荐(1) 编辑

C#生成string类型的唯一ID

摘要: using System;using System.Diagnostics;using System.Security.Cryptography;using System.Text;using System.Threading;namespace 命名空间{ /// <summary> /// Represents an ObjectId (see also BsonObjectId). /// </summary> [Serializable] public struct ObjectId : IComparable<ObjectId>, IEquatab 阅读全文

posted @ 2012-04-26 11:16 悟生慧 阅读(5253) 评论(0) 推荐(1) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页

导航